This commit is contained in:
José Henrique Ivanchechen 2023-08-29 16:00:41 -03:00
parent 89f1418a08
commit af0bad0eeb
1 changed files with 2 additions and 2 deletions

View File

@ -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"]