Skip to content

Commit

Permalink
rebase to alpine 3.19
Browse files Browse the repository at this point in the history
  • Loading branch information
hydazz committed Apr 24, 2024
1 parent bd5ec30 commit 7e15e0f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM ghcr.io/imagegenius/baseimage-alpine:3.18
FROM ghcr.io/imagegenius/baseimage-alpine:3.19

# set version label
ARG BUILD_DATE
Expand All @@ -15,7 +15,7 @@ LABEL maintainer="hydazz"
RUN \
echo "**** install packages ****" && \
if [ -z ${GLIBC_VERSION} ]; then \
GLIBC_VERSION=$(curl -sL "https://packages.imagegenius.io/v3.18/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
GLIBC_VERSION=$(curl -sL "https://packages.imagegenius.io/v3.19/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
&& awk '/^P:'"glibc"'$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \
fi && \
apk add --no-cache --force-overwrite \
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM ghcr.io/imagegenius/baseimage-alpine:arm64v8-3.18
FROM ghcr.io/imagegenius/baseimage-alpine:arm64v8-3.19

# set version label
ARG BUILD_DATE
Expand All @@ -15,7 +15,7 @@ LABEL maintainer="hydazz"
RUN \
echo "**** install packages ****" && \
if [ -z ${GLIBC_VERSION} ]; then \
GLIBC_VERSION=$(curl -sL "https://packages.imagegenius.io/v3.18/aarch64/APKINDEX.tar.gz" | tar -xz -C /tmp \
GLIBC_VERSION=$(curl -sL "https://packages.imagegenius.io/v3.19/aarch64/APKINDEX.tar.gz" | tar -xz -C /tmp \
&& awk '/^P:'"glibc"'$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \
fi && \
apk add --no-cache --force-overwrite \
Expand Down
4 changes: 2 additions & 2 deletions jenkins-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ repo_vars:
- IG_REPO = 'docker-baseimage-alpine-glibc'
- CONTAINER_NAME = 'baseimage-alpine-glibc'
- DIST_IMAGE = 'alpine'
- DIST_TAG = '3.18'
- DIST_REPO = 'https://packages.imagegenius.io/v3.18/'
- DIST_TAG = '3.19'
- DIST_REPO = 'https://packages.imagegenius.io/v3.19/'
- DIST_REPO_PACKAGES = 'glibc'
- MULTIARCH = 'true'
- CI = 'true'
Expand Down

0 comments on commit 7e15e0f

Please sign in to comment.