funk-manager/Dockerfile

6 lines
113 B
Docker
Raw Normal View History

2019-07-06 09:34:24 +00:00
FROM python:3.7.3
COPY ./ ./
RUN pip install --no-cache-dir -r requirements.txt
CMD [ "python", "./server.py" ]