From d8623157be8a5473c279c9e9059ebbea1fed0576 Mon Sep 17 00:00:00 2001 From: Mitchell Barry Date: Wed, 15 Jan 2025 22:12:31 -0600 Subject: [PATCH] Update entrypoint from sh to bash --- src/OpenWish.Web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OpenWish.Web/Dockerfile b/src/OpenWish.Web/Dockerfile index 61e5d4e..5b7d67c 100644 --- a/src/OpenWish.Web/Dockerfile +++ b/src/OpenWish.Web/Dockerfile @@ -43,7 +43,7 @@ COPY --from=build /app/publish . COPY --from=build /app/version.txt . # Entrypoint script to set APP_VERSION, then start the app -RUN echo '#!/bin/sh' > /entrypoint.sh && \ +RUN echo '#!/bin/bash' > /entrypoint.sh && \ echo 'export APP_VERSION=$(cat /app/version.txt)' >> /entrypoint.sh && \ echo 'echo "App version: $APP_VERSION"' >> /entrypoint.sh && \ echo 'exec dotnet OpenWish.Web.dll' >> /entrypoint.sh && \