From 498f56479c65fcdc656cf1efdb73417d9fae8b6e Mon Sep 17 00:00:00 2001 From: Benjamin Date: Fri, 22 Nov 2024 09:25:26 +0100 Subject: [PATCH] New position of project inside Dockerfile --- pointMaster/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pointMaster/Dockerfile b/pointMaster/Dockerfile index 0d6ea38..904df4e 100644 --- a/pointMaster/Dockerfile +++ b/pointMaster/Dockerfile @@ -9,7 +9,7 @@ EXPOSE 8081 FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build ARG BUILD_CONFIGURATION=Release WORKDIR /src -COPY ["pointMaster.csproj", "./"] +COPY ["pointMaster/pointMaster.csproj", "pointMaster/"] RUN dotnet restore "./pointMaster.csproj" COPY . . WORKDIR "/src"