plane/space/Dockerfile.dev

17 lines
298 B
Docker
Raw Normal View History

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