diff options
author | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2024-03-27 13:15:13 +0100 |
---|---|---|
committer | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2024-03-27 13:15:13 +0100 |
commit | a1ac8b74efe5c65ba1514f3e5fd4bb8bec690fd1 (patch) | |
tree | b2306f3674d51149ab547eed288f8dc32d6d4912 /Dockerfile | |
parent | 5e149c7ae0124460d3024430f1c0bdc94c74f56e (diff) |
Make ui logging configurable
- introduce LOGGING_ENABLED environment variable that can be set to enable the ui logging
Issue-ID: PORTALNG-81
Change-Id: Icb540020bf18e030e3b02fa27f66eb5982a2bf31
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -14,7 +14,7 @@ RUN npm run build -- --configuration production FROM nginxinc/nginx-unprivileged:alpine-slim USER root -RUN apk add gettext # required for envsubst in docker_entrypoint.sh +RUN apk add --no-cache gettext # required for envsubst in docker_entrypoint.sh USER nginx COPY --chown=nginx:nginx server/nginx* ./ |