Merge remote-tracking branch 'origin/master'

This commit is contained in:
2023-07-21 00:07:44 +02:00
3 changed files with 45 additions and 15 deletions

View File

@ -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