Files
catan/docker/web.Dockerfile
dan 2499deb071
All checks were successful
ci / tests (push) Successful in 21s
Refresh web UI and make ML imports optional
2025-12-25 09:15:10 +03:00

14 lines
312 B
Docker

FROM node:20-alpine AS build
WORKDIR /app
COPY web/package.json web/package-lock.json* /app/
RUN npm install
COPY web /app
RUN npm run build
FROM nginx:1.27-alpine
COPY --from=build /app/dist /usr/share/nginx/html
COPY web/nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]