14 lines
240 B
Docker
14 lines
240 B
Docker
FROM node:20-alpine AS builder
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json package-lock.json ./
|
|
RUN npm i
|
|
|
|
ADD . .
|
|
RUN npm run build
|
|
|
|
FROM nginx:alpine
|
|
|
|
COPY --from=builder /app/dist /usr/share/comfycamp
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|