mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
16 lines
284 B
Docker
16 lines
284 B
Docker
FROM node:20-alpine
|
|
RUN apk add --no-cache libc6-compat
|
|
# Set working directory
|
|
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"]
|