From 93bafe53b5f4206723b43cf3cead07c9890e3d6c Mon Sep 17 00:00:00 2001 From: ale Date: Sun, 4 Aug 2024 01:28:03 +0200 Subject: [PATCH] initial commit --- Dockerfile | 8 ++++++++ README.md | 7 +++++++ 2 files changed, 15 insertions(+) create mode 100644 Dockerfile create mode 100644 README.md diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..164f452 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM debian:sid as download +RUN apt update && apt install -y aria2 wget && apt clean +RUN wget https://file.wikileaks.org/files-all.torrent +RUN mkdir /wikileaks +RUN aria2c --seed-time=0 -d /wikileaks files-all.torrent + +FROM nginx as wikileaks +COPY --from=download /wikileaks/file /usr/share/nginx/html diff --git a/README.md b/README.md new file mode 100644 index 0000000..9a986df --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# wikileaks-docker + +Simple `Dockerfile` that download and expose wikileaks files. + +# License + +MIT