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"