You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#Docker caché: Cuando se copia el archivo .csproj al contenedor y se ejecuta dotnet restore, Docker solo lo volverá a ejecutar si el archivo .csproj cambia. Si no cambia, Docker reutiliza la capa cacheada que ya contiene las dependencias restauradas.
COPY *.csproj ./
COPY *.sln ./
RUN dotnet restore
COPY . .
RUN dotnet publish -c Release -o ./publish
FROM mcr.microsoft.com/dotnet/aspnet:8.0 as runtime