Compare commits

...

2 Commits

Author SHA1 Message Date
2779f9ba09 Merge remote-tracking branch 'origin/master' 2023-07-21 00:12:23 +02:00
59a8e556f0 wrong build path 2023-07-21 00:12:09 +02:00

View File

@ -4,7 +4,7 @@ FROM mcr.microsoft.com/dotnet/sdk:7.0 as build-env
WORKDIR /src
COPY . /src/
RUN ls -l /src
RUN dotnet restore /src/API/API.csproj
RUN dotnet restore /src/API.csproj
RUN dotnet publish -c Release -o /publish
FROM glax/tranga-base:latest as runtime