From aad8ada2e17a5dce8b01c38cee63c5945ac94042 Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Wed, 23 Apr 2025 19:03:25 +0200 Subject: [PATCH] push to 2.15.3 --- Containerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Containerfile b/Containerfile index 0fa33a8..9489ed6 100644 --- a/Containerfile +++ b/Containerfile @@ -1,4 +1,4 @@ -FROM docker.io/alpine:3.19 AS builder +FROM docker.io/alpine:3.21 AS builder RUN apk add --no-cache \ python3-dev \ @@ -14,9 +14,9 @@ RUN apk add --no-cache \ libffi-dev \ linux-headers -ENV VERSION=v2.7.2 +ENV VERSION=v2.15.3 ENV ARCHIVE=paperless-ngx-$VERSION.tar.xz -ENV SHA256_SUM=b6508e2f96c9c5c6d9005d0005a30a920f131f2e07dbc8e634b87226f1976f44 +ENV SHA256_SUM=20cd5961b1f91bde5cb6743ae8eb7f8fd98d66ba67d49d5ab030d87c998ac2d1 RUN wget https://github.com/paperless-ngx/paperless-ngx/releases/download/$VERSION/$ARCHIVE RUN echo "$SHA256_SUM $ARCHIVE" | sha256sum -c - || exit 1 RUN mkdir -p /install @@ -32,7 +32,7 @@ RUN python3 -m venv env RUN env/bin/pip3 install -r requirements.txt -FROM docker.io/thallian/alpine-s6:3.19-3.1.6.2 +FROM docker.io/thallian/alpine-s6:3.21-3.2.0.2 RUN addgroup -g 2222 paperless RUN adduser -h /var/lib/paperless -u 2222 -D -G paperless paperless