Skip to content

Commit d3b2eb1

Browse files
Update alpine Docker tag to v3.19 (#203)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 1fc4b5d commit d3b2eb1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packaging/docker/x86-alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# use multi stage dockerfile to first create a virtualenv,
22
# then copy the virtualenv (without all build deps) into target image
33

4-
FROM alpine:3.17 as build
4+
FROM alpine:3.19 as build
55
RUN apk -U update && apk -U upgrade
66
RUN apk -U add python3 py3-virtualenv python3-dev gcc musl-dev linux-headers
77
ADD src /src
88
RUN virtualenv /usr/local/dyndnsc && \
99
/usr/local/dyndnsc/bin/pip install /src
1010

11-
FROM alpine:3.17
11+
FROM alpine:3.19
1212
RUN apk -U update && \
1313
apk -U upgrade && \
1414
apk -U add --no-cache python3 && \

0 commit comments

Comments
 (0)