Spaces:
Runtime error
Runtime error
File size: 237 Bytes
15ea62b |
1 2 3 4 5 6 7 8 9 10 11 |
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.8
COPY ./app /app/app
COPY ./requirements.txt /app
RUN pip install --no-cache-dir -r /app/requirements.txt
EXPOSE 80
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"] |