Dockerfile.alpine -> Dockerfile, update CI build scripts

This commit is contained in:
Ethan Frey
2020-06-16 01:45:00 +02:00
parent 50ffd809db
commit 4474e33f75
7 changed files with 91 additions and 85 deletions

View File

@@ -196,8 +196,8 @@ jobs:
- checkout
- setup_remote_docker
- run:
name: Build Docker artifact - demo
command: docker build --pull -t "cosmwasm/wasmd-demo:${CIRCLE_SHA1}" .
name: Build Docker artifact
command: docker build --pull -t "cosmwasm/wasmd:${CIRCLE_SHA1}" .
- run:
name: Push application Docker image to docker hub
command: |
@@ -216,13 +216,13 @@ jobs:
- checkout
- setup_remote_docker
- run:
name: Build Docker artifact - demo
command: docker build --pull -t "cosmwasm/wasmd-demo:${CIRCLE_TAG}" .
name: Build Docker artifact
command: docker build --pull -t "cosmwasm/wasmd:${CIRCLE_TAG}" .
- run:
name: Push application Docker image to docker hub
command: |
docker login --password-stdin -u "$DOCKER_USER" \<<<"$DOCKER_PASS"
docker push "cosmwasm/wasmd-demo:${CIRCLE_TAG}"
docker push "cosmwasm/wasmd:${CIRCLE_TAG}"
docker logout
reproducible-builds: