export port 3000 on dockerfile

This commit is contained in:
Amruth Pillai
2023-11-15 16:44:27 +01:00
parent 8171e90a6c
commit 0b4cb71320
4 changed files with 8 additions and 6 deletions

View File

@ -31,4 +31,6 @@ COPY --chown=node:node --from=build /app/node_modules/.prisma/client ./node_modu
# Copy Prisma Schema & Migrations
COPY --chown=node:node --from=build /app/tools/prisma ./tools/prisma
EXPOSE 3000
CMD [ "dumb-init", "npm", "run", "start" ]