commit 93bafe53b5f4206723b43cf3cead07c9890e3d6c Author: ale Date: Sun Aug 4 01:28:03 2024 +0200 initial commit 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