This commit is contained in:
rca 2024-06-23 16:01:49 +09:00
parent 85c9d7ee08
commit 2370d91188

View File

@ -1,17 +0,0 @@
FROM node:18
WORKDIR /usr/src/kidshift
COPY package*.json ./
RUN npm install
COPY . .
RUN npx prisma generate
RUN npm run build
CMD ["npm", "start"]
EXPOSE 3000