Hellper / Dockerfile
OlgaKo's picture
Update Dockerfile
80aa4a2
raw
history blame
No virus
202 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
COPY . .
CMD ["uvicorn", "planer.py:app", "--host", "0.0.0.0", "--port", "7860"]