pwned-search/Dockerfile
aussiDavid 986a2af1e4 Dockerised python CLI program
* Dockerised python CLI program

* Add all files into the docker image
2019-03-22 13:31:05 +00:00

8 lines
94 B
Docker

FROM python:3
RUN pip install requests
ADD . /app
ENTRYPOINT [ "python", "/app/pwned.py" ]