From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Fri, 8 Sep 2023 19:30:55 +0000 (-0700) Subject: Updates the underlying image to use Python 3.11 X-Git-Tag: v2.0.0-beta.1~140 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=80b32dd3928affd6f009defc4f502446debb3d9d;p=thirdparty%2Fpaperless-ngx.git Updates the underlying image to use Python 3.11 --- diff --git a/Dockerfile b/Dockerfile index 36dc22f9fe..59f190ade7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ RUN set -eux \ # Comments: # - pipenv dependencies are not left in the final image # - pipenv can't touch the final image somehow -FROM --platform=$BUILDPLATFORM docker.io/python:3.9-alpine as pipenv-base +FROM --platform=$BUILDPLATFORM docker.io/python:3.11-alpine as pipenv-base WORKDIR /usr/src/pipenv @@ -37,7 +37,7 @@ RUN set -eux \ # Purpose: The final image # Comments: # - Don't leave anything extra in here -FROM docker.io/python:3.9-slim-bookworm as main-app +FROM docker.io/python:3.11-slim-bookworm as main-app LABEL org.opencontainers.image.authors="paperless-ngx team " LABEL org.opencontainers.image.documentation="https://docs.paperless-ngx.com/"