This commit is contained in:
ducoterra
2021-10-30 19:19:31 -04:00
commit 829951d8e7
7 changed files with 99 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM python:latest
RUN pip install requests
COPY get_server.py get_server.py
RUN chmod +x get_server.py
WORKDIR /downloads
CMD [ "/get_server.py" ]
ENTRYPOINT ["python"]