Skip to content

Commit

Permalink
Temporarily turn off updating some release images
Browse files Browse the repository at this point in the history
We are in a transition period with the Alpine ponyc image being
based on Alpine 3.18. We can build with nightly tags now but need
to wait until after the next ponyc release in a couple days before
we do release images. We'll turn on release images just before
the next release.
  • Loading branch information
SeanTAllen committed Aug 29, 2023
1 parent 503369e commit 8d475e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions release-a-library/build-and-push.bash
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ TAG_AS=release
docker build --pull --build-arg FROM_TAG="${FROM_TAG}" \
-t "${NAME}:${TAG_AS}" \
"${DOCKERFILE_DIR}"
docker push "${NAME}:${TAG_AS}"
#docker push "${NAME}:${TAG_AS}"

# built from ponyc latest tag
FROM_TAG=alpine
Expand All @@ -38,7 +38,7 @@ TAG_AS=release
docker build --pull --build-arg FROM_TAG="${FROM_TAG}" \
-t "${NAME}:${TAG_AS}" \
"${DOCKERFILE_DIR}"
docker push "${NAME}:${TAG_AS}"
#docker push "${NAME}:${TAG_AS}"

# built from ponyc latest tag
FROM_TAG=alpine
Expand Down
4 changes: 2 additions & 2 deletions x86-64-unknown-linux-builder/build-and-push.bash
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ TAG_AS=release
docker build --pull --build-arg FROM_TAG="${FROM_TAG}" \
-t "${NAME}:${TAG_AS}" \
"${DOCKERFILE_DIR}"
docker push "${NAME}:${TAG_AS}"
#docker push "${NAME}:${TAG_AS}"

# built from ponyc latest tag
FROM_TAG=alpine
Expand All @@ -38,7 +38,7 @@ TAG_AS=release
docker build --pull --build-arg FROM_TAG="${FROM_TAG}" \
-t "${NAME}:${TAG_AS}" \
"${DOCKERFILE_DIR}"
docker push "${NAME}:${TAG_AS}"
#docker push "${NAME}:${TAG_AS}"

# built from ponyc latest tag
FROM_TAG=alpine
Expand Down

0 comments on commit 8d475e2

Please sign in to comment.