Hellper / Dockerfile
OlgaKo's picture
Update Dockerfile
850ec15
raw
history blame contribute delete
No virus
146 Bytes
FROM python:3.7
WORKDIR /app
COPY . /app
RUN pip3 install -r requirements.txt
CMD ["python3", "planer.py", "--host", "0.0.0.0", "--port", "7860"]