From 9d34327a6d514a84c74554a42e24f5b070455f88 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Sat, 22 Jun 2024 11:30:06 -0700 Subject: [PATCH] Resolves the casing warning in newer Docker versions --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4d53a0cc4..bb32a9817 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.11-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.11-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/"