From 96ecf8de16ae75c4e5fdb55658149a00bb9610ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Henrique?= Date: Sat, 4 Nov 2023 00:45:56 -0300 Subject: [PATCH] updating download urls --- ASP.NET/Dockerfile | 8 ++++---- ActixAPI/Dockerfile | 8 ++++---- FlaskAPI/Dockerfile | 10 +++++----- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/ASP.NET/Dockerfile b/ASP.NET/Dockerfile index daacbbe..820b9ef 100644 --- a/ASP.NET/Dockerfile +++ b/ASP.NET/Dockerfile @@ -12,10 +12,10 @@ RUN dotnet restore RUN dotnet build -c Release -o out RUN cd out && \ - wget https://files.ivanch.me/api/public/dl/iFuXSNhw/small-image.png && \ - wget https://files.ivanch.me/api/public/dl/81Bkht5C/big-image.png && \ - wget https://files.ivanch.me/api/public/dl/nAndfAjK/video.mp4 && \ - wget https://files.ivanch.me/api/public/dl/RzXwJG7o/nginx.html && \ + wget https://files.ivanch.me/api/public/dl/a8pf5HZL/small-image.png && \ + wget https://files.ivanch.me/api/public/dl/ZoZDck7M/big-image.png && \ + wget https://files.ivanch.me/api/public/dl/URuFVrtX/video.mp4 && \ + wget https://files.ivanch.me/api/public/dl/aeZqpr_F/nginx.html && \ rm -rf runtimes && \ mkdir -p ./static && \ mv small-image.png ./static && \ diff --git a/ActixAPI/Dockerfile b/ActixAPI/Dockerfile index 23dfd4f..147e231 100644 --- a/ActixAPI/Dockerfile +++ b/ActixAPI/Dockerfile @@ -3,10 +3,10 @@ FROM rust:latest WORKDIR /app RUN apt-get update && apt-get -y install wget && \ - wget https://files.ivanch.me/api/public/dl/iFuXSNhw/small-image.png && \ - wget https://files.ivanch.me/api/public/dl/81Bkht5C/big-image.png && \ - wget https://files.ivanch.me/api/public/dl/nAndfAjK/video.mp4 && \ - wget https://files.ivanch.me/api/public/dl/RzXwJG7o/nginx.html + wget https://files.ivanch.me/api/public/dl/a8pf5HZL/small-image.png && \ + wget https://files.ivanch.me/api/public/dl/ZoZDck7M/big-image.png && \ + wget https://files.ivanch.me/api/public/dl/URuFVrtX/video.mp4 && \ + wget https://files.ivanch.me/api/public/dl/aeZqpr_F/nginx.html COPY . . diff --git a/FlaskAPI/Dockerfile b/FlaskAPI/Dockerfile index 436dd2e..452618f 100644 --- a/FlaskAPI/Dockerfile +++ b/FlaskAPI/Dockerfile @@ -7,16 +7,16 @@ ENV PYTHONUNBUFFERED=1 WORKDIR /app RUN apt-get update && \ - apt-get install -y wget && \ + apt-get install -y wget unzip && \ wget https://github.com/protocolbuffers/protobuf/releases/download/v25.0/protoc-25.0-linux-x86_64.zip && \ unzip protoc-25.0-linux-x86_64.zip && \ mv bin/protoc /usr/local/bin/ && \ rm -rf protoc-25.0-linux-x86_64.zip bin include readme.txt -RUN wget https://files.ivanch.me/api/public/dl/iFuXSNhw/small-image.png && \ - wget https://files.ivanch.me/api/public/dl/81Bkht5C/big-image.png && \ - wget https://files.ivanch.me/api/public/dl/nAndfAjK/video.mp4 && \ - wget https://files.ivanch.me/api/public/dl/RzXwJG7o/nginx.html && \ +RUN wget https://files.ivanch.me/api/public/dl/a8pf5HZL/small-image.png && \ + wget https://files.ivanch.me/api/public/dl/ZoZDck7M/big-image.png && \ + wget https://files.ivanch.me/api/public/dl/URuFVrtX/video.mp4 && \ + wget https://files.ivanch.me/api/public/dl/aeZqpr_F/nginx.html && \ rm -rf runtimes && \ mkdir -p ./static && \ mv small-image.png ./static && \