Hellper / Dockerfile
OlgaKo's picture
Update Dockerfile
b07f24e
raw
history blame
No virus
152 Bytes
FROM python:python:3.9
WORKDIR /app
COPY _ /app
RUN pip3 install -r requiremens.txt
CMD ["python3", "planer.py", "--host", "0.0.0.0", "--port", "7860"]