From 69039a703655e664200f575b7dc525a8abee4027 Mon Sep 17 00:00:00 2001 From: Sergey Karmanov Date: Mon, 22 Sep 2025 23:25:39 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A4=D0=B8=D0=BA=D1=81=20dockerfile=20=D0=B4?= =?UTF-8?q?=D0=BB=D1=8F=20=D0=BD=D0=BE=D0=B2=D0=BE=D0=B3=D0=BE=20namespace?= =?UTF-8?q?=20abstractions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b38adc4..38ea523 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine3.22 AS build ARG BUILD_CONFIGURATION=Release WORKDIR /src COPY ./SfeduSchedule ./SfeduSchedule -COPY ./SfeduSchedule.Plugin.Abstractions ./SfeduSchedule.Plugin.Abstractions +COPY ./SfeduSchedule.Abstractions ./SfeduSchedule.Abstractions WORKDIR /src/SfeduSchedule RUN dotnet restore "SfeduSchedule.csproj" RUN dotnet publish "SfeduSchedule.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false