mirror of
https://github.com/makeplane/plane.git
synced 2025-12-17 20:37:54 +01:00
12 lines
196 B
Docker
12 lines
196 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 3000
|
||
|
|
CMD ["yarn","dev", "--filter=space"]
|