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

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"]