diff --git a/Docker/start.sh b/Docker/start.sh index 5bdf768..ccff49c 100644 --- a/Docker/start.sh +++ b/Docker/start.sh @@ -1 +1,3 @@ -dotnet Kasbot.App.dll & ; dotnet Kasbot.API.dll & ; wait \ No newline at end of file +dotnet Kasbot.App.dll & +dotnet Kasbot.API.dll & +wait \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 44e5c4d..1c684b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build-env WORKDIR /App # Copy everything +COPY ./Proto ./Proto COPY ./Kasbot.APP ./Kasbot.APP COPY ./Kasbot.API ./Kasbot.API COPY ./Kasbot.sln ./Kasbot.sln @@ -23,4 +24,4 @@ RUN chmod +x start.sh COPY --from=build-env /App/out . -ENTRYPOINT ["./start.sh" ] \ No newline at end of file +ENTRYPOINT ["sh", "./start.sh" ] \ No newline at end of file