webssh/Dockerfile

6 lines
108 B
Docker
Raw Normal View History

2019-04-18 11:39:14 +00:00
FROM python:3.7-slim
ADD . /code
WORKDIR /code
RUN pip install -r requirements.txt
CMD ["python", "run.py"]