From d251be2af8d16d512f99e43668dc89684c06512b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20MIELCAREK?= Date: Thu, 21 Sep 2023 11:47:41 +0200 Subject: [PATCH] Delete 'Sources/Dockerfile' --- Sources/Dockerfile | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 Sources/Dockerfile diff --git a/Sources/Dockerfile b/Sources/Dockerfile deleted file mode 100644 index b5213ef..0000000 --- a/Sources/Dockerfile +++ /dev/null @@ -1,14 +0,0 @@ -# syntax=docker/dockerfile:1 - -FROM mcr.microsoft.com/dotnet/sdk:6.0 as build-env -WORKDIR /Sources -COPY *.csproj . -RUN dotnet restore -COPY Sources . -RUN dotnet publish -c Release -o /publish - -FROM mcr.microsoft.com/dotnet/aspnet:6.0 as runtime -WORKDIR /publish -COPY --from=build-env /publish . -EXPOSE 80 -ENTRYPOINT ["dotnet", "OpenLibraryWrapper.dll"] \ No newline at end of file