From 61acd31a2c5a89d0a4c083b65d63d2ea15433a57 Mon Sep 17 00:00:00 2001 From: Calvin Li <65045619+calvin-li-developer@users.noreply.github.com> Date: Thu, 17 Jul 2025 17:51:23 -0400 Subject: [PATCH] docker file update --- Dockerfile | 1 + Dockerfile.fat | 1 + Dockerfile.ultra-lite | 1 + 3 files changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2468fca5f..a5447ca92 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,7 @@ COPY app/core/src/main/resources/static/fonts/*.ttf /usr/share/fonts/opentype/no COPY app/core/build/libs/*.jar app.jar ARG VERSION_TAG +ARG LANGS LABEL org.opencontainers.image.title="Stirling-PDF" LABEL org.opencontainers.image.description="A powerful locally hosted web-based PDF manipulation tool supporting 50+ operations including merging, splitting, conversion, OCR, watermarking, and more." diff --git a/Dockerfile.fat b/Dockerfile.fat index 555cc9bdb..87751800b 100644 --- a/Dockerfile.fat +++ b/Dockerfile.fat @@ -32,6 +32,7 @@ COPY app/core/src/main/resources/static/fonts/*.ttf /usr/share/fonts/opentype/no COPY --from=build /app/app/core/build/libs/*.jar app.jar ARG VERSION_TAG +ARG LANGS # Set Environment Variables ENV DISABLE_ADDITIONAL_FEATURES=true \ diff --git a/Dockerfile.ultra-lite b/Dockerfile.ultra-lite index 150a6d628..2fc0e9771 100644 --- a/Dockerfile.ultra-lite +++ b/Dockerfile.ultra-lite @@ -2,6 +2,7 @@ FROM alpine:3.22.0@sha256:8a1f59ffb675680d47db6337b49d22281a139e9d709335b492be023728e11715 ARG VERSION_TAG +ARG LANGS # Set Environment Variables ENV DISABLE_ADDITIONAL_FEATURES=true \