10 lines
172 B
Docker
10 lines
172 B
Docker
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"]
|