CoolFace
Apppublic

keyfarel/svm-expression-api

sourceHugging Faceapache-2.0updated 10mo agoView on Hugging Face
0likes
Dockerfile13 linesDownload Raw Back to root
1FROM python:3.9-slim2 3WORKDIR /code4 5RUN apt-get update && apt-get install -y libgl1 libglib2.0-0 && rm -rf /var/lib/apt/lists/*6 7COPY ./requirements.txt /code/requirements.txt8RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt9 10COPY . /code11RUN chmod -R 777 /code12 13CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]