13 lines
340 B
Docker
13 lines
340 B
Docker
FROM node:20-alpine AS builder
|
|
WORKDIR /app
|
|
COPY frontend/package*.json ./
|
|
RUN npm ci
|
|
COPY frontend/ ./
|
|
RUN npm run build --prefix frontend
|
|
|
|
FROM nginx:stable-alpine
|
|
COPY --from=builder /app/frontend/dist /usr/share/nginx/html
|
|
COPY deploy/nginx/docker-chat.conf /etc/nginx/conf.d/default.conf
|
|
EXPOSE 8443
|
|
CMD ["nginx", "-g", "daemon off;"]
|