Files
fast_api_template/frontend/Dockerfile
T

22 lines
493 B
Docker
Raw Normal View History

2023-12-04 17:09:14 -05:00
# Stage 0, "build-stage", based on Node.js, to build and compile the frontend
2024-03-08 19:23:54 +01:00
FROM node:20 as build-stage
2023-12-04 17:09:14 -05:00
WORKDIR /app
COPY package*.json /app/
RUN npm install
COPY ./ /app/
RUN npm run build
# Stage 1, based on Nginx, to have only the compiled app, ready for production with Nginx
FROM nginx:1
COPY --from=build-stage /app/dist/ /usr/share/nginx/html
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
COPY ./nginx-backend-not-found.conf /etc/nginx/extra-conf.d/backend-not-found.conf