Files
twenty/infra/prod/front/Dockerfile
2023-04-18 16:21:38 +02:00

14 lines
192 B
Docker

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