mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 16:19:43 +01:00
* chore: updated node version to 22 and python version to 3.12.10 * chore: remove unneccessary comments * chore: remove nodejs-current dependency
16 lines
261 B
Docker
16 lines
261 B
Docker
FROM node:22-alpine
|
|
|
|
RUN apk add --no-cache libc6-compat
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
RUN yarn global add turbo
|
|
RUN yarn install
|
|
EXPOSE 3003
|
|
|
|
ENV TURBO_TELEMETRY_DISABLED=1
|
|
|
|
VOLUME [ "/app/node_modules", "/app/live/node_modules"]
|
|
|
|
CMD ["yarn","dev", "--filter=live"]
|