Skip to content

Commit

Permalink
Create Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhilashKD authored Oct 23, 2024
1 parent 3388469 commit cf8ed51
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM node:20
WORKDIR /app
COPY . ./
ENV NEXT_PRIVATE_LOCAL_WEBPACK=true
RUN npm install --legacy-peer-deps
RUN npm run build
EXPOSE 3000

CMD ["npm", "run", "start"]

0 comments on commit cf8ed51

Please sign in to comment.