Files
twenty/infra/prod/front/Dockerfile
2023-04-13 12:45:50 +02:00

12 lines
168 B
Docker

FROM node:18-alpine as front
WORKDIR /app/front
COPY ./front .
RUN npm install --production
RUN npm run build
RUN npm install -g serve
CMD ["serve", "-s", "build"]