diff --git a/.github/workflows/build-and-push.yaml b/.github/workflows/build-and-push.yaml index 569994c..02e29f8 100644 --- a/.github/workflows/build-and-push.yaml +++ b/.github/workflows/build-and-push.yaml @@ -30,6 +30,6 @@ jobs: with: pull: true push: true - tags: frolvlad/alpine-glibc:latest,frolvlad/alpine-glibc:alpine-3.18_glibc-2.35,frolvlad/alpine-glibc:alpine-3.18,frolvlad/alpine-glibc:glibc-2.35 + tags: frolvlad/alpine-glibc:latest,frolvlad/alpine-glibc:alpine-3.18_glibc-2.34,frolvlad/alpine-glibc:alpine-3.18,frolvlad/alpine-glibc:glibc-2.34 cache-from: type=registry,ref=frolvlad/alpine-glibc:latest cache-to: type=inline diff --git a/Dockerfile b/Dockerfile index 9bae649..99edaf2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ENV LANG=C.UTF-8 # NOTE: Glibc 2.35 package is broken: https://github.com/sgerrand/alpine-pkg-glibc/issues/176, so we stick to 2.34 for now RUN ALPINE_GLIBC_BASE_URL="https://github.com/sgerrand/alpine-pkg-glibc/releases/download" && \ - ALPINE_GLIBC_PACKAGE_VERSION="2.35-r1" && \ + ALPINE_GLIBC_PACKAGE_VERSION="2.34-r0" && \ ALPINE_GLIBC_BASE_PACKAGE_FILENAME="glibc-$ALPINE_GLIBC_PACKAGE_VERSION.apk" && \ ALPINE_GLIBC_BIN_PACKAGE_FILENAME="glibc-bin-$ALPINE_GLIBC_PACKAGE_VERSION.apk" && \ ALPINE_GLIBC_I18N_PACKAGE_FILENAME="glibc-i18n-$ALPINE_GLIBC_PACKAGE_VERSION.apk" && \