From 507f2be1966b58311c8f5037c5bd4e572f499599 Mon Sep 17 00:00:00 2001 From: Ismail Hamzah Date: Tue, 21 Jul 2026 18:32:22 +0700 Subject: [PATCH] fix: hapus --no-restore --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 341a9d2..f5e3469 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN dotnet restore # Copy semua source code dan build COPY . . -RUN dotnet publish -c Release -o /app --no-restore +RUN dotnet publish -c Release -o /app # ---- STAGE 2: RUN ---- FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS runtime