fix: update Dockerfile to use /bin/sh for entrypoint execution

This commit is contained in:
Henry
2025-06-16 21:43:24 +01:00
parent 4d48bf140d
commit 4f152e1224

View File

@@ -79,5 +79,5 @@ ARG PORT=3000
ENV PORT=${PORT}
EXPOSE ${PORT}
CMD ["./entrypoint.sh"]
CMD ["/bin/sh", "./entrypoint.sh"]