From a143576eba2ddb09046ad5e341068eba52e75049 Mon Sep 17 00:00:00 2001 From: Guillaume Briot Date: Sat, 3 Jun 2017 15:00:20 +0200 Subject: [PATCH] Created Dockerfile --- Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..69eddc7 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM python:3 + +RUN mkdir -p /Wallhaven-dl/Wallhaven +WORKDIR /Wallhaven-dl + +COPY requirments.txt ./ +RUN pip install --no-cache-dir -r requirments.txt + +COPY . . + +VOLUME /Wallhaven-dl/Wallhaven + +CMD [ "python", "./wallhaven-dl.py" ]