Dockerfile 170 Bytes Edit 1 2 3 4 5 6 7 8 9 FROM python:3.6 COPY requirements.txt /tmp/requirements.txt RUN python -m pip install -r /tmp/requirements.txt WORKDIR /routersploit COPY . . CMD ["python", "rsf.py"]