Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: upgrade to Alpine 3.20.3 #163

Merged
merged 1 commit into from
Oct 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
FROM alpine:3.19.1
FROM alpine:3.20.3

ARG COMMIT_ID
ENV COMMIT_ID ${COMMIT_ID}
ENV COMMIT_ID=${COMMIT_ID}

ARG VERSION
ENV VERSION ${VERSION:-3.3.0}
ENV VERSION=${VERSION:-3.3.0}

ARG BUILD_UID
ENV BUILD_UID ${BUILD_UID:-2999}
ENV BUILD_UID=${BUILD_UID:-2999}

ARG BUILD_GID
ENV BUILD_GID ${BUILD_GID:-2999}
ENV BUILD_GID=${BUILD_GID:-2999}

ARG TAKE_FILE_OWNERSHIP
ENV TAKE_FILE_OWNERSHIP ${TAKE_FILE_OWNERSHIP:-true}
ENV TAKE_FILE_OWNERSHIP=${TAKE_FILE_OWNERSHIP:-true}

LABEL maintainer="Thomas Queste <tom@tomsquest.com>" \
org.label-schema.name="Radicale Docker Image" \
Expand Down
Loading