Files
plane/apps/dev-wiki/Dockerfile.dev
2025-09-02 19:06:51 +05:30

16 lines
254 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 3000
VOLUME [ "/app/node_modules", "/app/web/node_modules" ]
CMD ["yarn", "dev", "--filter=web"]