mirror of
https://github.com/makeplane/plane.git
synced 2025-12-29 00:24:56 +01:00
* feat: oidc and saml authentication * fix: removing build branch one workflow * fix: linting errors --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
14 lines
295 B
Docker
14 lines
295 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 3333
|
|
ENV NEXT_PUBLIC_DEPLOY_WITH_NGINX=1
|
|
|
|
VOLUME [ "/app/node_modules", "/app/god-mode/node_modules"]
|
|
CMD ["yarn","dev", "--filter=god-mode"]
|