From 39033922feda69f3ca1c73517e134fb71d1bcaef Mon Sep 17 00:00:00 2001 From: Ismail Hamzah Date: Tue, 21 Jul 2026 18:32:13 +0700 Subject: [PATCH] fix: hapus --no-restore --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c86d1d1..5befaa1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ COPY Presentation/ASPNET/ASPNET.csproj Presentation/ASPNET/ RUN dotnet restore Presentation/ASPNET/ASPNET.csproj COPY . . -RUN dotnet publish Presentation/ASPNET/ASPNET.csproj -c Release -o /app --no-restore +RUN dotnet publish Presentation/ASPNET/ASPNET.csproj -c Release -o /app # ---- STAGE 2: RUN ---- FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS runtime