add dockerfile

This commit is contained in:
Nareshkumar Rao 2025-04-02 02:07:29 +02:00
parent 54970c2d33
commit 711993220b
2 changed files with 19 additions and 0 deletions

4
.dockerignore Normal file
View File

@ -0,0 +1,4 @@
.next/
node_modules/
.env*
next-env.d.ts

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM node:current-alpine AS build
COPY . /app
WORKDIR /app
RUN npm install
RUN npx prisma generate
RUN npm run build
RUN cp -r .next/static .next/standalone/.next/
FROM node:current-alpine AS production
COPY --from=build /app/.next/standalone /app
EXPOSE 3000
WORKDIR /app
CMD ["node", "server.js"]