diff --git a/Dockerfile b/Dockerfile index 924abb6..d5bfd5b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM node:16.17.0-bullseye-slim AS build ENV NODE_ENV production WORKDIR /app COPY . /app -RUN mkdir -p dist node_modules +RUN mkdir -p _site node_modules RUN chown -R node:node . USER node RUN NODE_ENV=development npm ci @@ -12,5 +12,5 @@ RUN npm run build # serve compiled files with local nginx config FROM nginx:alpine WORKDIR /app -COPY --from=build /app/dist . +COPY --from=build /app/_site . COPY ./nginx.conf /etc/nginx/nginx.conf diff --git a/nginx.conf b/nginx.conf index c738e06..afec279 100644 --- a/nginx.conf +++ b/nginx.conf @@ -11,7 +11,7 @@ http { listen [::]:8080; resolver 127.0.0.11; - autoindex on; + autoindex off; server_name _; server_tokens off;