"vscode:/vscode.git/clone" did not exist on "dc5a645434f0ea6364c426c6ba112da1afa40cb2"
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
# copy backend files
COPY ./backend .
CMD [ "sh", "start.sh"]
\ No newline at end of file
CMD [ "bash", "start.sh"]
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