Add dev dockerfiles

This commit is contained in:
Zoe Roux
2022-09-28 14:57:30 +09:00
parent 5f73f86787
commit 88b1c04367
10 changed files with 75 additions and 11 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM node:16-alpine AS builder
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn --frozen-lockfile
ENV NEXT_TELEMETRY_DISABLED 1
EXPOSE 3000
ENV PORT 3000
CMD ["yarn", "dev"]