twenty/infra/prod/front/Dockerfile

15 lines
206 B
Docker
Raw Normal View History

2023-04-18 17:21:38 +03:00
FROM node:18.16.0-alpine as front
2023-04-13 13:40:44 +03:00
2023-04-20 16:02:20 +03:00
ARG REACT_APP_API_URL
ARG REACT_APP_AUTH_URL
2023-04-14 12:52:12 +03:00
2023-04-13 13:40:44 +03:00
WORKDIR /app/front
COPY ./front .
2023-04-13 15:17:40 +03:00
RUN npm install
2023-04-13 13:40:44 +03:00
RUN npm run build
RUN npm install -g serve
CMD ["serve", "-s", "build"]