17 lines
282 B
Docker
17 lines
282 B
Docker
FROM node:20-alpine AS build
|
|
WORKDIR /app/frontend
|
|
|
|
COPY frontend/package*.json ./
|
|
RUN npm ci
|
|
|
|
COPY frontend/ ./
|
|
RUN npm run build
|
|
|
|
|
|
FROM nginx:1.27-alpine
|
|
|
|
COPY docker/nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY --from=build /app/frontend/build /usr/share/nginx/html
|
|
|
|
EXPOSE 80
|