fix: use bash when starting the Dockerfile's entrypoint script (as the script uses BASH_SOURCE that is bash only)

This commit is contained in:
Giulio De Pasquale 2024-01-24 17:56:04 +00:00 committed by GitHub
parent b6d9cf3bc8
commit c4dd20b087
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -55,4 +55,4 @@ COPY --from=build /app/build /app/build
# copy backend files
COPY ./backend .
CMD [ "sh", "start.sh"]
CMD [ "bash", "start.sh"]