small fixes for bash

This commit is contained in:
Jose Henrique 2023-11-20 20:57:30 -03:00
parent 441bcc4e96
commit a10a3eadfa
2 changed files with 5 additions and 2 deletions

View File

@ -1 +1,3 @@
dotnet Kasbot.App.dll & ; dotnet Kasbot.API.dll & ; wait
dotnet Kasbot.App.dll &
dotnet Kasbot.API.dll &
wait

View File

@ -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" ]
ENTRYPOINT ["sh", "./start.sh" ]