diff --git a/pointMaster/Dockerfile b/pointMaster/Dockerfile index 904df4e..0d6ea38 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/pointMaster.csproj", "pointMaster/"] +COPY ["pointMaster.csproj", "./"] RUN dotnet restore "./pointMaster.csproj" COPY . . WORKDIR "/src"