From e10e7f3c85ada99d28a03e8cdc6fc7bab8ac1eba Mon Sep 17 00:00:00 2001 From: iTob Date: Fri, 20 Sep 2024 10:16:02 +0200 Subject: [PATCH] fix dockerfile --- IaC/RBLNews.Web/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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