mirror of
https://github.com/makeplane/plane.git
synced 2025-12-24 15:49:36 +01:00
* chore: updated node version to 22 and python version to 3.12.10 * chore: remove unneccessary comments * chore: remove nodejs-current dependency
17 lines
298 B
Docker
17 lines
298 B
Docker
FROM node:22-alpine
|
|
RUN apk add --no-cache libc6-compat
|
|
# Set working directory
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN yarn global add turbo
|
|
RUN yarn install
|
|
|
|
EXPOSE 4000
|
|
|
|
ENV NEXT_PUBLIC_SPACE_BASE_PATH="/spaces"
|
|
|
|
VOLUME [ "/app/node_modules", "/app/space/node_modules"]
|
|
CMD ["yarn","dev", "--filter=space"]
|