From a1564779373bb5395ba054f15d6baa349ede3fdf Mon Sep 17 00:00:00 2001 From: Ismail Hamzah Date: Tue, 21 Jul 2026 18:31:57 +0700 Subject: [PATCH] fix: hapus --no-restore --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 497c199..f895778 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ WORKDIR /src COPY *.csproj . RUN dotnet restore COPY . . -RUN dotnet publish -c Release -o /app --no-restore +RUN dotnet publish -c Release -o /app FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS runtime WORKDIR /app