File size: 190 Bytes
df0388b |
1 2 3 4 5 6 7 8 9 10 11 12 |
FROM condaforge/miniforge3:latest
RUN conda install python=3.9 -y
COPY . .
RUN python -m pip install -e .
EXPOSE 8000
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|