Skip to content

Commit

Permalink
Use a different docker image. (#1511)
Browse files Browse the repository at this point in the history
  • Loading branch information
Neopallium authored Aug 9, 2023
1 parent 454f04a commit 67100db
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ jobs:
environment:
IMAGE_NAME: polymeshassociation/polymesh
docker:
- image: docker:stable-git
- image: cimg/deploy:2023.08
resource_class: small
steps:
- checkout
Expand All @@ -362,12 +362,12 @@ jobs:
export VERSION=`./scripts/version.sh "$CIRCLE_BRANCH" "$CIRCLE_SHA1"`
docker build -f ./.docker/Dockerfile.debian --tag $IMAGE_NAME:latest-$CIRCLE_BRANCH-debian --tag $IMAGE_NAME:$VERSION-$CIRCLE_BRANCH-debian .
echo $DOCKERHUB_PASS | docker login -u $DOCKERHUB_USERNAME --password-stdin
docker push $IMAGE_NAME
#docker push $IMAGE_NAME
build-docker-distroless:
environment:
IMAGE_NAME: polymeshassociation/polymesh
docker:
- image: docker:stable-git
- image: cimg/deploy:2023.08
resource_class: small
steps:
- checkout
Expand All @@ -378,7 +378,7 @@ jobs:
export VERSION=`./scripts/version.sh "$CIRCLE_BRANCH" "$CIRCLE_SHA1"`
docker build -f ./.docker/Dockerfile.distroless --tag $IMAGE_NAME:latest-$CIRCLE_BRANCH-distroless --tag $IMAGE_NAME:$VERSION-$CIRCLE_BRANCH-distroless .
echo $DOCKERHUB_PASS | docker login -u $DOCKERHUB_USERNAME --password-stdin
docker push $IMAGE_NAME
#docker push $IMAGE_NAME
build-docker-arm64-debian:
environment:
IMAGE_NAME: polymeshassociation/polymesh-arm64
Expand Down

0 comments on commit 67100db

Please sign in to comment.