Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 826 Bytes
9781b82 7226c84 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# Use official Python runtime as base image
FROM python:3.10-slim
WORKDIR /app
# Set environment variables
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
# Install system dependencies
RUN apt-get update && apt-get install -y \
gcc \
&& rm -rf /var/lib/apt/lists/*
# Install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY . .
RUN useradd -ms /bin/bash appuser \
&& chown -R appuser:appuser /app
USER appuser
# Expose port from settings (7860 from your code)
EXPOSE 7860
# Healthcheck
HEALTHCHECK --interval=30s --timeout=3s \
CMD curl -f http://localhost:7860/v1/health || exit 1
# Command to run the application with configurable host/port
CMD ["python", "/app/src/server/main.py", "--host", "0.0.0.0", "--port", "7860"] |