doodbackend2 / Dockerfile
bobwatcherx's picture
321
297b56f
raw
history blame contribute delete
No virus
215 Bytes
FROM python:3.9
WORKDIR /app
COPY ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY . /app
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]