From 078eaf5237d48de5fdd3e7ecc8dffaac8de7ba65 Mon Sep 17 00:00:00 2001 From: gamer147 Date: Wed, 26 Nov 2025 12:42:35 -0500 Subject: [PATCH] [FA-11] Dumb --- FictionArchive.Service.FileService/Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/FictionArchive.Service.FileService/Dockerfile b/FictionArchive.Service.FileService/Dockerfile index f972438..fc45bc8 100644 --- a/FictionArchive.Service.FileService/Dockerfile +++ b/FictionArchive.Service.FileService/Dockerfile @@ -7,17 +7,17 @@ EXPOSE 8081 FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build ARG BUILD_CONFIGURATION=Release WORKDIR /src -COPY ["FictionArchive.Service.ImageService/FictionArchive.Service.ImageService.csproj", "FictionArchive.Service.ImageService/"] -RUN dotnet restore "FictionArchive.Service.ImageService/FictionArchive.Service.ImageService.csproj" +COPY ["FictionArchive.Service.FileService/FictionArchive.Service.FileService.csproj", "FictionArchive.Service.FileService/"] +RUN dotnet restore "FictionArchive.Service.FileService/FictionArchive.Service.FileService.csproj" COPY . . -WORKDIR "/src/FictionArchive.Service.ImageService" -RUN dotnet build "./FictionArchive.Service.ImageService.csproj" -c $BUILD_CONFIGURATION -o /app/build +WORKDIR "/src/FictionArchive.Service.FileService" +RUN dotnet build "./FictionArchive.Service.FileService.csproj" -c $BUILD_CONFIGURATION -o /app/build FROM build AS publish ARG BUILD_CONFIGURATION=Release -RUN dotnet publish "./FictionArchive.Service.ImageService.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false +RUN dotnet publish "./FictionArchive.Service.FileService.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false FROM base AS final WORKDIR /app COPY --from=publish /app/publish . -ENTRYPOINT ["dotnet", "FictionArchive.Service.ImageService.dll"] +ENTRYPOINT ["dotnet", "FictionArchive.Service.FileService.dll"]