re-do api dockerfile
Some checks failed
Build and Deploy API / build-and-deploy (push) Failing after 3s
Build and Deploy Frontend / build-and-deploy (push) Successful in 4s

This commit is contained in:
2026-02-28 18:46:22 -06:00
parent fdbcdd2d01
commit 553006f36b

View File

@@ -3,10 +3,10 @@
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
WORKDIR /src
COPY *.csproj .
COPY api/*.csproj .
RUN dotnet restore
COPY . .
COPY api/. .
RUN dotnet publish -c Release -o /app/publish
# run