mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 13:29:56 +02:00
16 lines
284 B
Docker
16 lines
284 B
Docker
|
|
FROM node:18-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/silo/node_modules"]
|
||
|
|
|
||
|
|
CMD ["yarn","dev", "--filter=silo"]
|