Falcondette / Dockerfile
Raiff1982's picture
Create Dockerfile
d0acae4 verified
raw
history blame
159 Bytes
FROM python:3.9
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "8000"]