Research_AI_Assistant / Dockerfile.hf
JatsTheAIGen's picture
Initial commit V1
66dbebd
raw
history blame
684 Bytes
# Dockerfile.hf
FROM python:3.9-slim
# System dependencies
RUN apt-get update && apt-get install -y \
gcc \
g++ \
cmake \
libopenblas-dev \
libomp-dev \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /app
# Copy requirements first for better caching
COPY requirements.txt .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY . .
# Expose port for Gradio
EXPOSE 7860
# Health check
HEALTHCHECK --interval=30s --timeout=30s --start-period=5s --retries=3 \
CMD python -c "import requests; requests.get('http://localhost:7860')"
# Run the application
CMD ["python", "app.py"]