From 9df3938d9458c1d2919c4f5ff976afda5f0f8deb Mon Sep 17 00:00:00 2001 From: prtsie Date: Thu, 30 Oct 2025 14:15:40 +0300 Subject: [PATCH] =?UTF-8?q?=D0=92=D0=B5=D1=80=D0=BD=D1=83=D0=BB=20Dockerfi?= =?UTF-8?q?le?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .drone.yml | 1 - ApplicationLayer/Dockerfile => Dockerfile | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) rename ApplicationLayer/Dockerfile => Dockerfile (96%) diff --git a/.drone.yml b/.drone.yml index 0c4aa4c..45a37cf 100644 --- a/.drone.yml +++ b/.drone.yml @@ -16,7 +16,6 @@ steps: password: from_secret: docker_pass dockerfile: ApplicationLayer/Dockerfile - context: ./ registry: git.prtsie.ru repo: git.prtsie.ru/prtsie/schengen-visa-${DRONE_BRANCH} tags: diff --git a/ApplicationLayer/Dockerfile b/Dockerfile similarity index 96% rename from ApplicationLayer/Dockerfile rename to Dockerfile index a6f186b..95a0c5b 100644 --- a/ApplicationLayer/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build WORKDIR /src -COPY ../ ./ +COPY ./ ./ RUN dotnet restore RUN dotnet publish "SchengenVisaApi/SchengenVisaApi.csproj" -c Release -o /app/publish