From ac290048c3e9caf59a167d25fca4b5c749f7c79f Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Sat, 23 Dec 2023 23:33:50 +0300 Subject: [PATCH] Dockerfile: comment COPY files --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f9b16f5..6065982 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,9 +6,9 @@ FROM mcr.microsoft.com/dotnet/sdk:6.0-alpine AS build WORKDIR /src COPY ["EvoCalculator.Core/EvoCalculator.Core.csproj", "EvoCalculator.Core/"] -COPY ./NuGet.Config /nuget.config -COPY ./evoleasing_25.crt /etc/ssl/certs -RUN update-ca-certificates +# COPY ./NuGet.Config /nuget.config +# COPY ./evoleasing_25.crt /etc/ssl/certs +# RUN update-ca-certificates RUN dotnet restore "EvoCalculator.Core/EvoCalculator.Core.csproj" COPY . .