diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index b925579..0000000 --- a/Dockerfile +++ /dev/null @@ -1,15 +0,0 @@ -# Stage 1 -FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build -WORKDIR /build -ENV ASPNETCORE_URLS=http://*:2121 -COPY . . -RUN dotnet restore -RUN dotnet publish -c Release -o /app -# Stage 2 -FROM mcr.microsoft.com/dotnet/core/aspnet:3.1 AS final -WORKDIR /app -COPY --from=build /app . - -EXPOSE 2121 - -ENTRYPOINT ["dotnet", "EvoCalculator.Core.dll"] \ No newline at end of file