diff --git a/ASP.NET/Dockerfile b/ASP.NET/Dockerfile index 5aeda6e..10fda51 100644 --- a/ASP.NET/Dockerfile +++ b/ASP.NET/Dockerfile @@ -15,6 +15,8 @@ FROM mcr.microsoft.com/dotnet/aspnet:6.0-bullseye-slim WORKDIR /App +COPY --from=build-env ./out . + RUN apt update && apt install wget -y && \ wget https://files.ivanch.me/api/public/dl/QFCLgtrG/simpleimage.png && \ wget https://files.ivanch.me/api/public/dl/E0VLgWbx/bigimage.png && \ @@ -24,6 +26,4 @@ RUN apt update && apt install wget -y && \ cp bigimage.png ./static && \ mv video.mp4 ./static -COPY --from=build-env /App/out . - ENTRYPOINT ["dotnet", "/App/TCC.APP.dll"] \ No newline at end of file