diff --git a/Dockerfile b/Dockerfile index 0064f3eb1..a4dda0d57 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,5 +35,4 @@ COPY --from=build-env /app/build/web /usr/share/nginx/html EXPOSE 80 # Before stating NGinx, re-zip all the content to ensure customizations are propagated -RUN gzip -k -f -r /usr/share/nginx/html/ -CMD ["nginx", "-g", "daemon off;"] +CMD gzip -k -r /usr/share/nginx/html/ && nginx -g 'daemon off;'