Files
twenty/packages/twenty-docker/dev/twenty-dev/Dockerfile
2023-12-10 18:10:54 +01:00

22 lines
392 B
Docker

FROM node:18.16-bullseye as twenty-dev
COPY /../../packages /app/packages
WORKDIR /app/front
COPY ../../front/package.json .
COPY ../../front/yarn.lock .
RUN yarn install
RUN npx playwright install-deps
WORKDIR /app/server
COPY ../../server/package.json .
COPY ../../server/yarn.lock .
COPY ../../server/patches ./patches
RUN yarn install
WORKDIR /app
CMD ["tail", "-f", "/dev/null"]