omyfish / infrastructure /docker /Dockerfile.api
fenghebonjour's picture
Upload folder using huggingface_hub
821204a verified
Raw
History Blame Contribute Delete
392 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
libglib2.0-0 libsm6 libxrender1 libxext6 \
build-essential \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8000
CMD ["uvicorn", "apps.omyfish_api.main:app", "--host", "0.0.0.0", "--port", "8000"]