diff --git a/Verax_API_EF/Dockerfile b/Verax_API_EF/Dockerfile index 7043d91..ba3a213 100644 --- a/Verax_API_EF/Dockerfile +++ b/Verax_API_EF/Dockerfile @@ -1,7 +1,8 @@ FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build-env WORKDIR / -COPY Verax_API_EF/ Verax/ +COPY . Verax/ RUN cd Verax/ +RUN cd Verax_API_EF/ RUN dotnet restore Verax_API_EF.sln RUN dotnet publish -c Release -o out --no-restore Verax_API_EF.sln