From 91c56783dc84cd42b0cd141794a94d4fd84979d4 Mon Sep 17 00:00:00 2001 From: glax Date: Fri, 21 Jul 2023 00:03:32 +0200 Subject: [PATCH] restore absolute path --- API/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/API/Dockerfile b/API/Dockerfile index d594485..23e3804 100644 --- a/API/Dockerfile +++ b/API/Dockerfile @@ -3,7 +3,7 @@ FROM mcr.microsoft.com/dotnet/sdk:7.0 as build-env WORKDIR /src COPY . /src/ -RUN dotnet restore API/API.csproj +RUN dotnet restore /src/API/API.csproj RUN dotnet publish -c Release -o /publish FROM glax/tranga-base:latest as runtime