Skip to content

Commit

Permalink
ci: alpine docker images name fix (#698)
Browse files Browse the repository at this point in the history
  • Loading branch information
junr03 authored Apr 4, 2017
1 parent 92876bb commit daf0153
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ci/build_alpine_container/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ binary:
fi

container:
docker build -f ./Dockerfile-envoy-alpine -t envoy-alpine:${ENVOY_TAG} .
docker build -f ./Dockerfile-envoy-alpine-debug -t envoy-alpine-debug:${ENVOY_TAG} .
docker build -f ./Dockerfile-envoy-alpine -t lyft/envoy-alpine:${ENVOY_TAG} .
docker build -f ./Dockerfile-envoy-alpine-debug -t lyft/envoy-alpine-debug:${ENVOY_TAG} .

test:
./run_alpine_binary_verification.sh debug
Expand Down
4 changes: 2 additions & 2 deletions ci/build_alpine_container/run_alpine_binary_verification.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ main() {
fi

if [ "${type}" == "debug" ]; then
ENVOY_IMAGE=envoy-alpine-debug:${ENVOY_TAG}
ENVOY_IMAGE=lyft/envoy-alpine-debug:${ENVOY_TAG}
else
ENVOY_IMAGE=envoy-alpine:${ENVOY_TAG}
ENVOY_IMAGE=lyft/envoy-alpine:${ENVOY_TAG}
fi
TEST_CONTAINER=alpine_envoy_test_ct

Expand Down

0 comments on commit daf0153

Please sign in to comment.