2023-10-13 06:46:08 +00:00
|
|
|
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
|
|
|
|
2023-10-13 06:46:08 +00:00
|
|
|
RUN yarn global add turbo
|
|
|
|
RUN yarn install
|
2024-05-09 15:35:51 +00:00
|
|
|
|
2023-12-14 10:48:02 +00:00
|
|
|
EXPOSE 4000
|
2024-05-09 15:35:51 +00:00
|
|
|
|
|
|
|
ENV NEXT_PUBLIC_SPACE_BASE_PATH="/spaces"
|
2023-12-14 10:48:02 +00:00
|
|
|
|
|
|
|
VOLUME [ "/app/node_modules", "/app/space/node_modules"]
|
2023-10-13 06:46:08 +00:00
|
|
|
CMD ["yarn","dev", "--filter=space"]
|