From 6bd4f1ef5966b6c5e8cd26c98d73f6a76231e042 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Mon, 28 Aug 2023 00:48:45 +0100 Subject: [PATCH] chore: copy from relative csproj path --- VPLink/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VPLink/Dockerfile b/VPLink/Dockerfile index 264b3a1..e703f6c 100644 --- a/VPLink/Dockerfile +++ b/VPLink/Dockerfile @@ -5,7 +5,7 @@ EXPOSE 443 FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build WORKDIR /src -COPY ["VPLink/VPLink.csproj", "VPLink/"] +COPY ["VPLink.csproj", "VPLink/"] RUN dotnet restore "VPLink/VPLink.csproj" COPY . . WORKDIR "/src/VPLink"