From ac940399ce25262ab437662ac5c49d855c3761e4 Mon Sep 17 00:00:00 2001 From: Lucas Gaitzsch Date: Mon, 23 Sep 2024 07:21:08 +0200 Subject: [PATCH] update dockerfiles --- Dockerfile | 12 ++++++------ Dockerfile.unprivileged | 14 +++++++------- Dockerfile.withoutPlayground | 10 +++++----- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Dockerfile b/Dockerfile index c5ef7b0..47363ab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,12 +21,12 @@ RUN apt-get -y install ca-certificates fonts-open-sans fonts-roboto fonts-noto-c RUN apt-get clean RUN rm -rf /var/lib/apt/lists/* -ENV LANG en-US.UTF-8 -ENV LOG_LEVEL_DEBUG false -ENV LOG_JSON_OUTPUT false -ENV WORKER_INSTANCES 40 -ENV PORT 8000 -ENV SERVE_PLAYGROUND true +ENV LANG=en-US.UTF-8 +ENV LOG_LEVEL_DEBUG=false +ENV LOG_JSON_OUTPUT=false +ENV WORKER_INSTANCES=40 +ENV PORT=8000 +ENV SERVE_PLAYGROUND=true EXPOSE ${PORT} diff --git a/Dockerfile.unprivileged b/Dockerfile.unprivileged index c361482..f1cda5c 100644 --- a/Dockerfile.unprivileged +++ b/Dockerfile.unprivileged @@ -21,13 +21,13 @@ RUN apt-get -y install ca-certificates fonts-open-sans fonts-roboto fonts-noto-c RUN apt-get clean RUN rm -rf /var/lib/apt/lists/* -ENV LANG en-US.UTF-8 -ENV LOG_LEVEL_DEBUG false -ENV LOG_JSON_OUTPUT false -ENV WORKER_INSTANCES 40 -ENV PORT 8000 -ENV SERVE_PLAYGROUND true -ENV NO_SANDBOX true +ENV LANG=en-US.UTF-8 +ENV LOG_LEVEL_DEBUG=false +ENV LOG_JSON_OUTPUT=false +ENV WORKER_INSTANCES=40 +ENV PORT=8000 +ENV SERVE_PLAYGROUND=true +ENV NO_SANDBOX=true EXPOSE ${PORT} diff --git a/Dockerfile.withoutPlayground b/Dockerfile.withoutPlayground index 08964a5..a35900f 100644 --- a/Dockerfile.withoutPlayground +++ b/Dockerfile.withoutPlayground @@ -13,11 +13,11 @@ RUN rm -rf /var/lib/apt/lists/* WORKDIR /app COPY --from=build-service /build/pdf-turtle /app/pdf-turtle -ENV LANG en-US.UTF-8 -ENV LOG_LEVEL_DEBUG false -ENV LOG_JSON_OUTPUT false -ENV WORKER_INSTANCES 40 -ENV PORT 8000 +ENV LANG=en-US.UTF-8 +ENV LOG_LEVEL_DEBUG=false +ENV LOG_JSON_OUTPUT=false +ENV WORKER_INSTANCES=40 +ENV PORT=8000 EXPOSE ${PORT}