Files
plane/space/Dockerfile.dev

17 lines
298 B
Docker
Raw Permalink Normal View History

2025-01-09 16:05:39 +05:30
FROM node:20-alpine
RUN apk add --no-cache libc6-compat
# Set working directory
WORKDIR /app
COPY . .
2024-05-09 21:05:51 +05:30
RUN yarn global add turbo
RUN yarn install
2024-05-09 21:05:51 +05:30
EXPOSE 4000
2024-05-09 21:05:51 +05:30
ENV NEXT_PUBLIC_SPACE_BASE_PATH="/spaces"
VOLUME [ "/app/node_modules", "/app/space/node_modules"]
CMD ["yarn","dev", "--filter=space"]