From f7507b306f80d629b06558e451edaa13c900ac37 Mon Sep 17 00:00:00 2001 From: Vince Grassia <593223+vgrassia@users.noreply.github.com> Date: Thu, 9 Nov 2023 12:40:55 -0500 Subject: [PATCH] Fix copy source --- src/Admin/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Admin/Dockerfile b/src/Admin/Dockerfile index 25b7fd104e..4cfbf03448 100644 --- a/src/Admin/Dockerfile +++ b/src/Admin/Dockerfile @@ -54,7 +54,7 @@ RUN apt-get update \ WORKDIR /app COPY --from=dotnet-build /app ./ -COPY entrypoint.sh / +COPY src/Admin/entrypoint.sh / RUN chmod +x /entrypoint.sh HEALTHCHECK CMD curl -f http://localhost:5000 || exit 1