From 7585ae26b2bd8ad7aed889301c5e4ebc9d7dadbe Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Mon, 24 Jan 2022 04:23:14 +0700 Subject: [PATCH] Update dockerfile with new fsproj --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1d0c7b2..eb41ac9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,16 +8,16 @@ COPY . . RUN dotnet tool restore -RUN dotnet restore "PlayerInteractions/PlayerInteractions.fsproj" +RUN dotnet restore "Bot/Bot.fsproj" -WORKDIR "/src/PlayerInteractions" +WORKDIR "/src/Bot" -RUN dotnet build "PlayerInteractions.fsproj" -c Release -o /app/build +RUN dotnet build "Bot.fsproj" -c Release -o /app/build FROM build AS publish -RUN dotnet publish "PlayerInteractions.fsproj" -c Release -o /app/publish +RUN dotnet publish "Bot.fsproj" -c Release -o /app/publish FROM base AS final WORKDIR /app COPY --from=publish /app/publish . -ENTRYPOINT "./PlayerInteractions" +ENTRYPOINT "./Bot"