CoolFace
Apppublic

DeimosJS3/Final

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
Dockerfile7 linesDownload Raw Back to root
1FROM python:3.92COPY . .3RUN apt-get update && apt-get install -y unzip4RUN unzip mi_dataset.zip -d ./images5RUN pip install --no-cache-dir -r requirements.txt6CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]7