corrected build dir, no index
This commit is contained in:
parent
70a402e74f
commit
f349a66709
2 changed files with 3 additions and 3 deletions
|
@ -3,7 +3,7 @@ FROM node:16.17.0-bullseye-slim AS build
|
||||||
ENV NODE_ENV production
|
ENV NODE_ENV production
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY . /app
|
COPY . /app
|
||||||
RUN mkdir -p dist node_modules
|
RUN mkdir -p _site node_modules
|
||||||
RUN chown -R node:node .
|
RUN chown -R node:node .
|
||||||
USER node
|
USER node
|
||||||
RUN NODE_ENV=development npm ci
|
RUN NODE_ENV=development npm ci
|
||||||
|
@ -12,5 +12,5 @@ RUN npm run build
|
||||||
# serve compiled files with local nginx config
|
# serve compiled files with local nginx config
|
||||||
FROM nginx:alpine
|
FROM nginx:alpine
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY --from=build /app/dist .
|
COPY --from=build /app/_site .
|
||||||
COPY ./nginx.conf /etc/nginx/nginx.conf
|
COPY ./nginx.conf /etc/nginx/nginx.conf
|
||||||
|
|
|
@ -11,7 +11,7 @@ http {
|
||||||
listen [::]:8080;
|
listen [::]:8080;
|
||||||
|
|
||||||
resolver 127.0.0.11;
|
resolver 127.0.0.11;
|
||||||
autoindex on;
|
autoindex off;
|
||||||
|
|
||||||
server_name _;
|
server_name _;
|
||||||
server_tokens off;
|
server_tokens off;
|
||||||
|
|
Loading…
Add table
Reference in a new issue