fix: Use CMD in the dockerfile

This commit is contained in:
Thomas 2026-06-23 13:25:33 +01:00
parent 395c5ba793
commit c68ec4119d
No known key found for this signature in database
2 changed files with 2 additions and 8 deletions

View file

@ -1,7 +0,0 @@
#!/bin/sh
#Run the prisma:deploy npm script
# npm run prisma:deploy
# Start the server
exec node build

View file

@ -26,4 +26,5 @@ COPY package.json .
EXPOSE 3000
ENV NODE_ENV=production
VOLUME /data
ENTRYPOINT [ "./entrypoint.sh" ]
CMD ["node", "build"]