Skip to content

Commit

Permalink
fix: Fix docker build.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewjw committed Jul 3, 2024
1 parent ce28c2d commit 3f4be5f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker_push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ sudo docker login --username andrewjw --password $DOCKER_TOKEN

sudo docker buildx create --use

sudo docker build --platform linux/amd64,linux/arm64 \
--build-arg VERSION=$TAG \
-t andrewjw/glowprom:$TAG \
-t andrewjw/glowprom:latest .
sudo docker buildx --platform linux/amd64,linux/arm64 \
--build-arg VERSION=$TAG \
-t andrewjw/glowprom:$TAG \
-t andrewjw/glowprom:latest .

sudo docker push andrewjw/glowprom:$TAG

Expand Down

0 comments on commit 3f4be5f

Please sign in to comment.