From f678a0b074c2549a5b50a30606f59ce3b61be670 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 18 Mar 2022 21:03:38 +0100 Subject: [PATCH] Update alpine Docker tag to v3.15 (#170) Co-authored-by: Renovate Bot --- packaging/docker/x86-alpine/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/docker/x86-alpine/Dockerfile b/packaging/docker/x86-alpine/Dockerfile index 618000f..bf723df 100644 --- a/packaging/docker/x86-alpine/Dockerfile +++ b/packaging/docker/x86-alpine/Dockerfile @@ -1,14 +1,14 @@ # use multi stage dockerfile to first create a virtualenv, # then copy the virtualenv (without all build deps) into target image -FROM alpine:3.14 as build +FROM alpine:3.15 as build RUN apk -U update && apk -U upgrade RUN apk -U add python3 py3-virtualenv python3-dev gcc musl-dev linux-headers ADD src /src RUN virtualenv /usr/local/dyndnsc && \ /usr/local/dyndnsc/bin/pip install /src -FROM alpine:3.14 +FROM alpine:3.15 RUN apk -U update && \ apk -U upgrade && \ apk -U add --no-cache python3 && \