From: Code-Otto Date: Tue, 25 Jun 2024 20:27:21 +0000 (+0200) Subject: Update Dockerfile.experimental to use Alpine Linux 3.20 X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=d0b93da1781e077be6523b690c636a357a49422c;p=flatnotes.git Update Dockerfile.experimental to use Alpine Linux 3.20 --- diff --git a/Dockerfile.experimental b/Dockerfile.experimental index da7e500..0c68b9c 100644 --- a/Dockerfile.experimental +++ b/Dockerfile.experimental @@ -22,7 +22,7 @@ COPY client ./client RUN npm run build # Pipenv Build Container -FROM python:3.11-alpine3.19 as pipenv-build +FROM python:3.11-alpine3.20 as pipenv-build ARG BUILD_DIR @@ -40,7 +40,7 @@ RUN pipenv install --deploy --ignore-pipfile && \ pipenv --clear # Runtime Container -FROM python:3.11-alpine3.19 +FROM python:3.11-alpine3.20 ARG BUILD_DIR