Merge pull request #558 from peperunas/patch-1

fix: use bash when starting the Dockerfile's entrypoint script (as th…
This commit is contained in:
Timothy Jaeryang Baek 2024-01-29 16:33:59 -08:00 committed by GitHub
commit b2fae0643e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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