mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-19 17:42:27 +03:00
b028d9fd2a
* add render.yaml * Clean environment variables --------- Co-authored-by: Charles Bochet <charles@twenty.com>
24 lines
382 B
Docker
24 lines
382 B
Docker
FROM node:18.16.0-alpine as build
|
|
|
|
|
|
ARG REACT_APP_SERVER_BASE_URL
|
|
ARG REACT_APP_SERVER_AUTH_URL
|
|
ARG REACT_APP_SERVER_FILES_URL
|
|
|
|
COPY ./packages/ /app/packages
|
|
|
|
WORKDIR /app/front
|
|
COPY ./front .
|
|
|
|
RUN yarn install
|
|
RUN yarn build
|
|
|
|
FROM node:18.16.0-alpine as front
|
|
|
|
WORKDIR /app/front
|
|
COPY --from=build /app/front/build ./build
|
|
|
|
RUN yarn global add serve
|
|
|
|
CMD ["serve", "-s", "build"]
|