Drop "-upstream" suffix from docker image name (#530)

This commit is contained in:
Sam Clegg
2020-06-24 16:55:32 -07:00
committed by GitHub
parent 47c669a002
commit eff1d2e2f1
2 changed files with 3 additions and 8 deletions

View File

@@ -112,7 +112,7 @@ jobs:
- setup_remote_docker
- run:
name: build
command: docker build --network host --build-arg=EMSCRIPTEN_VERSION=${CIRCLE_TAG}-upstream --tag emscripten/emsdk:${CIRCLE_TAG} ./docker
command: docker build --network host --build-arg EMSCRIPTEN_VERSION=${CIRCLE_TAG} --tag emscripten/emsdk:${CIRCLE_TAG} ./docker
- run:
name: tag image
command: docker tag emscripten/emsdk:${CIRCLE_TAG} emscripten/emsdk:latest