From c4dd20b08768725bb21a1439aac52b3b38ef039c Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Wed, 24 Jan 2024 17:56:04 +0000 Subject: [PATCH] fix: use bash when starting the Dockerfile's entrypoint script (as the script uses BASH_SOURCE that is bash only) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4a23e9148..37f556dc3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]