food-recognition / Dockerfile
Manh Ho Dinh
Upload 12 files
484aa33 verified
raw
history blame contribute delete
216 Bytes
FROM tiangolo/uvicorn-gunicorn:python3.10
RUN apt update && \
apt install -y htop libgl1-mesa-glx libglib2.0-0
COPY requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt