mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-20 10:11:48 +03:00
a975935f49
* Connect profile picture upload to backend * Fix tests * Revert onboarding state changes
18 lines
261 B
Docker
18 lines
261 B
Docker
FROM node:18.16.0-alpine as front
|
|
|
|
ARG REACT_APP_API_URL
|
|
ARG REACT_APP_AUTH_URL
|
|
ARG REACT_APP_FILES_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"]
|