1
0
Fork 0
mirror of synced 2024-06-22 16:10:36 +12:00
bulk-downloader-for-reddit/Dockerfile

9 lines
210 B
Docker
Raw Normal View History

2020-06-06 02:23:45 +12:00
FROM python:latest
WORKDIR "/root/Bulk Downloader for Reddit"
COPY ./requirements.txt ./
RUN ["pip", "install", "-r", "requirements.txt"]
EXPOSE 8080
EXPOSE 7634
CMD ["python", "script.py", "-d", "downloads"]