From 35f10248d944592fa79daa2c223a8bb1a7b508d7 Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Sun, 24 Dec 2023 00:19:19 +0300 Subject: [PATCH] Revert "Dockerfile: comment COPY files" This reverts commit ac290048c3e9caf59a167d25fca4b5c749f7c79f. --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6065982..f9b16f5 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 . .