diff --git a/IaC/RBLNews.Web/Dockerfile b/IaC/RBLNews.Web/Dockerfile index 0220130..8851bd4 100644 --- a/IaC/RBLNews.Web/Dockerfile +++ b/IaC/RBLNews.Web/Dockerfile @@ -7,8 +7,8 @@ EXPOSE 443 FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build ARG BUILD_CONFIGURATION=Release WORKDIR /src -COPY ["../../RBLNews.Web/RBLNews.Shared.csproj", "RBLNews.Shared/"] -RUN dotnet restore "RBLFeeder/RBLNews.Web.csproj" +COPY ["../../RBLNews.Shared/RBLNews.Shared.csproj", "RBLNews.Shared/"] +RUN dotnet restore "RBLNews/RBLNews.Web.csproj" COPY . . WORKDIR "/src/RBLNews.Web" RUN dotnet build "RBLNews.Web.csproj" -c $BUILD_CONFIGURATION -o /app/build