CoolFace
Apppublic

hugging-science/storage

sourceHugging Facemitupdated 9d agoView on Hugging Face
0likes
Dockerfile8 linesDownload Raw Back to root
1FROM python:3.11-slim2WORKDIR /app3COPY requirements.txt .4RUN pip install --no-cache-dir -r requirements.txt5COPY server.py .6RUN mkdir -p /app/data && chmod -R 777 /app7EXPOSE 78608CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "7860"]