Food-Menu / Dockerfile
hardik-2004's picture
Upload folder using huggingface_hub
1752bb9 verified
raw
history blame contribute delete
698 Bytes
FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Install dependencies
RUN apt-get update && apt-get install -y \
git \
libgl1-mesa-glx \
libglib2.0-0 \
ffmpeg \
curl \
&& rm -rf /var/lib/apt/lists/*
ENV HF_HOME=/tmp/huggingface
ENV TRANSFORMERS_CACHE=/tmp/huggingface/transformers
ENV HF_DATASETS_CACHE=/tmp/huggingface/datasets
ENV DIFFUSERS_CACHE=/tmp/huggingface/diffusers
# Copy files
COPY . .
# Install Python packages
RUN pip install --no-cache-dir -r requirements.txt
# Expose the port for Hugging Face
ENV PORT 7860
EXPOSE 7860
# Run the FastAPI server
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]