File size: 177 Bytes
fed9da9
e79dbcf
b07f24e
9f6f19c
f2a4593
b07f24e
1
2
3
4
5
6

FROM python:3.9
WORKDIR /app
COPY requirements.txt/app/requirements.txt
RUN pip3 install -r requirements.txt
CMD ["python3", "planer.py", "--host", "0.0.0.0", "--port", "7860"]