mirror of
https://github.com/makeplane/plane.git
synced 2026-06-14 03:30:00 +00:00
944b873184
* chore: move all services inside the apps folder * chore: rename apiserver to server
13 lines
251 B
Docker
13 lines
251 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 3000
|
|
VOLUME [ "/app/node_modules", "/app/web/node_modules" ]
|
|
CMD ["yarn", "dev", "--filter=web"]
|