fix: hapus --no-restore

This commit is contained in:
2026-07-21 18:32:07 +07:00
parent 1bfa3dd1c2
commit e255986775
+1 -1
View File
@@ -3,7 +3,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