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