mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
13 lines
193 B
Docker
13 lines
193 B
Docker
|
FROM node:18-alpine
|
||
|
RUN apk add --no-cache libc6-compat
|
||
|
RUN apk update
|
||
|
# Set working directory
|
||
|
WORKDIR /app
|
||
|
|
||
|
|
||
|
COPY . .
|
||
|
RUN yarn global add turbo
|
||
|
RUN yarn install
|
||
|
EXPOSE 3000
|
||
|
CMD ["yarn","dev"]
|