Unverified Commit c4dd20b0 authored by Giulio De Pasquale's avatar Giulio De Pasquale Committed by GitHub
Browse files

fix: use bash when starting the Dockerfile's entrypoint script (as the script...

fix: use bash when starting the Dockerfile's entrypoint script (as the script uses BASH_SOURCE that is bash only)
parent b6d9cf3b
...@@ -55,4 +55,4 @@ COPY --from=build /app/build /app/build ...@@ -55,4 +55,4 @@ COPY --from=build /app/build /app/build
# copy backend files # copy backend files
COPY ./backend . COPY ./backend .
CMD [ "sh", "start.sh"] CMD [ "bash", "start.sh"]
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment