swiftml-backend / Dockerfile
arpy8's picture
pAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
88cb258
FROM python:3.11
USER root
WORKDIR /code
COPY . .
RUN pip install -r requirements.txt
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]