-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
378def9
commit ecd6083
Showing
1 changed file
with
4 additions
and
4 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,12 +1,12 @@ | ||
FROM alpine:3.18.4 | ||
FROM alpine:3.19.0 | ||
|
||
LABEL org.opencontainers.image.authors="Jonas Wagner <[email protected]>" | ||
|
||
# renovate: datasource=repology depName=alpine_3_18/keepalived | ||
# renovate: datasource=repology depName=alpine_3_19/keepalived | ||
ENV KEEPALIVED_VERSION="2.2.8-r0" | ||
|
||
# renovate: datasource=repology depName=alpine_3_18/curl | ||
ENV CURL_VERSION="8.4.0-r0" | ||
# renovate: datasource=repology depName=alpine_3_19/curl | ||
ENV CURL_VERSION="8.5.0-r0" | ||
|
||
RUN apk add --no-cache keepalived=${KEEPALIVED_VERSION} curl=${CURL_VERSION} | ||
|
||
|