From 0aa05ba6f6198a2b70f0be3ebc16d355f8bf0d1f Mon Sep 17 00:00:00 2001 From: Ali Mihandoost Date: Mon, 27 Nov 2023 15:57:58 +0330 Subject: [PATCH] fix(nginx): dockerfile --- packages/nginx/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/nginx/Dockerfile b/packages/nginx/Dockerfile index c4e680fc..624dfd26 100644 --- a/packages/nginx/Dockerfile +++ b/packages/nginx/Dockerfile @@ -2,7 +2,7 @@ FROM ghcr.io/alwatr/nginx-json:2.0.1 COPY etc/nginx/ /etc/nginx/ # COPY data/ . -RUN ls -RlahF /etc/nginx /data +RUN set -eux; ls -RlahF /etc/nginx /data ENV NGINX_OPEN_FILE_CACHE="max=5000 inactive=1h" \ NGINX_OPEN_FILE_CACHE_VALID=1s \ @@ -15,5 +15,5 @@ ENV NGINX_OPEN_FILE_CACHE="max=5000 inactive=1h" \ NGINX_LIMIT_REQ_BURST=1000 \ NGINX_DISABLE_SYMLINKS=if_not_owner -LABEL org.opencontainers.image.base.name="ghcr.io/alwatr/nginx-json:2.0.0" \ - org.opencontainers.image.documentation="https://github.com/Alwatr/storage" \ +LABEL org.opencontainers.image.base.name="ghcr.io/alwatr/nginx-json:2.0.1" \ + org.opencontainers.image.documentation="https://github.com/Alwatr/storage"