Hellper / Dockerfile
OlgaKo's picture
Update Dockerfile
7c88a6a
raw
history blame
No virus
147 Bytes
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"]