* Fix docker install * Move back twenty-eslint-plugin to eslint-plugin-twenty * fix: add bundled yarn * Improve makeifle structure * Update commands and doc * Add pg_graphql binaries * Fix --------- Co-authored-by: Jérémy Magrin <jeremy.magrin@gmail.com>
16 lines
364 B
Docker
16 lines
364 B
Docker
FROM node:18.16-bullseye as twenty-docs
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ../../../../package.json .
|
|
COPY ../../../../yarn.lock .
|
|
COPY ../../../../.yarnrc.yml .
|
|
COPY ../../../../.yarn/releases /app/.yarn/releases
|
|
COPY ../../../packages/twenty-docs/package.json /app/packages/twenty-docs/package.json
|
|
|
|
RUN yarn
|
|
|
|
WORKDIR /app/packages/twenty-docs
|
|
|
|
CMD ["tail", "-f", "/dev/null"]
|