File size: 147 Bytes
fed9da9
7c88a6a
b07f24e
a385753
f2a4593
b07f24e
1
2
3
4
5
6

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