Files
myocardial/docker/nginx.Dockerfile
T
2026-06-23 13:28:38 +07:00

12 lines
282 B
Docker

FROM node:20-alpine AS node-builder
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
RUN npm run build
FROM nginx:alpine
RUN rm /etc/nginx/conf.d/default.conf
COPY docker/nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=node-builder /app/public /var/www/html/public