From 8224974f78829ae4b05ad96f7bb64574a1305fdb Mon Sep 17 00:00:00 2001 From: Gervasio Marchand Date: Sat, 3 Dec 2022 17:58:35 -0300 Subject: [PATCH] Don't specify an entrypoint --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 81a50d8..ec228a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,5 @@ FROM mcr.microsoft.com/dotnet/aspnet:6.0.11-alpine3.16 VOLUME ["/data"] ENV CONFIG_PATH=/data/config.json COPY --from=builder /app /app -RUN ln -s /app/FakeRelay.Cli /bin/fakerelay -RUN ln -s /app/FakeRelay.Web /bin/web -ENTRYPOINT ["fakerelay"] \ No newline at end of file +RUN ln -s /app/FakeRelay.Cli /bin/cli +RUN ln -s /app/FakeRelay.Web /bin/web \ No newline at end of file