Created Dockerfile

This commit is contained in:
Guillaume Briot
2017-06-03 15:00:20 +02:00
parent b368615a2c
commit a143576eba

13
Dockerfile Normal file
View File

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