refactor: effectively revert 907a470 and 63bde0a
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
surtur 2020-11-27 15:06:42 +01:00
parent eece1e3dba
commit 54fb45ec65
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D
3 changed files with 4 additions and 6 deletions

View File

@ -43,12 +43,10 @@ steps:
image: banzaicloud/drone-kaniko
settings:
dockerfile: Dockerfile
context: .
- name: docker-debug-build
pull: always
image: banzaicloud/drone-kaniko
settings:
dockerfile: Dockerfile.dev
context: .

View File

@ -1,7 +1,7 @@
FROM mcr.microsoft.com/dotnet/core/sdk:2.1-alpine
COPY . src
WORKDIR src
COPY . /src
WORKDIR /src
RUN dotnet --version && dotnet --info
RUN dotnet clean
RUN dotnet restore

View File

@ -1,7 +1,7 @@
FROM mcr.microsoft.com/dotnet/core/sdk:2.1-alpine
COPY . src
WORKDIR src
COPY . /src
WORKDIR /src
RUN dotnet --version && dotnet --info
RUN dotnet clean