-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>" \ | ||
org.label-schema.name="Radicale Docker Image" \ | ||
|