Move next to start a monorepo

This commit is contained in:
Zoe Roux
2022-10-31 01:12:58 +09:00
parent 000f7cbfe1
commit 1507b279f7
96 changed files with 6004 additions and 2807 deletions
+4 -2
View File
@@ -1,10 +1,12 @@
FROM node:16-alpine AS builder
WORKDIR /app
COPY .yarn ./.yarn
COPY .yarnrc.yml ./
COPY package.json yarn.lock ./
RUN yarn --frozen-lockfile
RUN yarn --immutable
ENV NEXT_TELEMETRY_DISABLED 1
EXPOSE 3000
ENV PORT 3000
CMD ["yarn", "dev"]
CMD ["yarn", "web"]