mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
5c7382d894
* fix: environment file missing for space * dev: remove container name from the docker-compose local * dockerfile.dev modified for volumes * local dev fixes --------- Co-authored-by: Manish Gupta <manish@mgupta.me>
15 lines
290 B
Docker
15 lines
290 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 4000
|
|
ENV NEXT_PUBLIC_DEPLOY_WITH_NGINX=1
|
|
|
|
VOLUME [ "/app/node_modules", "/app/space/node_modules"]
|
|
CMD ["yarn","dev", "--filter=space"]
|