From 7c62f83dd8935b7553beaffe9c1d20b4c7667af5 Mon Sep 17 00:00:00 2001 From: Benjamin Date: Fri, 22 Nov 2024 09:26:59 +0100 Subject: [PATCH] Revert "New position of project inside Dockerfile" This reverts commit 498f56479c65fcdc656cf1efdb73417d9fae8b6e. --- pointMaster/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"