Compare commits

..

No commits in common. "2779f9ba090ac7b60b29b8e276023e1d66f5252c" and "074b137b5cab72c180bdc5a59713989dbc6dbd84" have entirely different histories.

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.csproj
RUN dotnet restore /src/API/API.csproj
RUN dotnet publish -c Release -o /publish
FROM glax/tranga-base:latest as runtime