* Update CI and CD scripts * Fix docker docs build * Fix CD * Fix CD * Update front build and add postgres intel pg_graphql files * Fix postgres install * Fix * Update docs
16 lines
562 B
Docker
16 lines
562 B
Docker
FROM node:18.16-bullseye as twenty-dev
|
|
|
|
WORKDIR /app
|
|
COPY ./package.json .
|
|
COPY ./yarn.lock .
|
|
COPY ./.yarnrc.yml .
|
|
COPY ./.yarn/releases /app/.yarn/releases
|
|
COPY ./packages/twenty-front/package.json /app/packages/twenty-front/package.json
|
|
COPY ./packages/twenty-server/package.json /app/packages/twenty-server/package.json
|
|
COPY ./packages/twenty-server/patches /app/packages/twenty-server/patches
|
|
COPY ./packages/eslint-plugin-twenty/package.json /app/packages/eslint-plugin-twenty/package.json
|
|
|
|
RUN npx playwright install-deps
|
|
|
|
CMD ["tail", "-f", "/dev/null"]
|