* chore: inject enviroment at the deployment phase (#2174) * Dockerfile CMD env.sh * env.sh generates env-config.js file * index.html imports env-config.js * front/src/config/index.ts imports REACT_APP_SERVER_BASE_URL * Upgrade Dockerfiles * Add compute pg_database_url for render * fix tests --------- Co-authored-by: Charles Bochet <charles@twenty.com>
24 lines
638 B
Docker
24 lines
638 B
Docker
FROM node:18.16.0-alpine as build
|
|
|
|
WORKDIR /app/server
|
|
COPY ./server/package.json ./
|
|
COPY ./server/yarn.lock ./
|
|
COPY ./server/patches ./patches
|
|
RUN yarn install
|
|
|
|
COPY ./server .
|
|
RUN npx prisma generate
|
|
|
|
RUN yarn build
|
|
|
|
FROM node:18.16.0-alpine as server
|
|
|
|
COPY --from=build /app/server/dist ./dist
|
|
|
|
WORKDIR /app/server
|
|
|
|
LABEL org.opencontainers.image.source=https://github.com/twentyhq/twenty
|
|
LABEL org.opencontainers.image.description="This image provides a consistent and reproducible environment for the backend, ensuring it deploys faster and runs the same way regardless of the deployment environment."
|
|
|
|
CMD ["node", "dist/src/main"]
|