1
0
Fork 0
mirror of synced 2024-06-27 18:40:34 +12:00
bulk-downloader-for-reddit/Dockerfile

10 lines
208 B
Docker
Raw Normal View History

FROM python:3.9
2020-06-06 02:23:45 +12:00
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"]