From 553006f36b29e26de18c4b415894c6193361418f Mon Sep 17 00:00:00 2001 From: Blitblank Date: Sat, 28 Feb 2026 18:46:22 -0600 Subject: [PATCH] re-do api dockerfile --- api/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/Dockerfile b/api/Dockerfile index 098a543..7eed9e8 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -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