twenty/infra/prod/front/Dockerfile
2023-06-14 17:11:12 +02:00

17 lines
238 B
Docker

FROM node:18.16.0-alpine as front
ARG REACT_APP_API_URL
ARG REACT_APP_AUTH_URL
COPY ../packages/ /app/packages
WORKDIR /app/front
COPY ./front .
RUN yarn install
RUN yarn build
RUN yarn global add serve
CMD ["serve", "-s", "build"]