mirror of
https://github.com/xzeldon/zeldon-site.git
synced 2025-01-31 13:07:28 +03:00
14 lines
236 B
Docker
14 lines
236 B
Docker
FROM node:24-slim as build
|
|
|
|
WORKDIR /opt
|
|
|
|
COPY package*.json ./
|
|
RUN npm ci
|
|
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
FROM nginx:1.24-alpine-slim
|
|
|
|
COPY config/nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY --from=build /opt/dist /usr/share/nginx/html |