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"