Spaces:
Sleeping
Sleeping
# Use Python 3.9 slim image as base | |
FROM python:3.9-slim | |
# Set working directory | |
WORKDIR /app | |
# Set environment variables | |
ENV PYTHONUNBUFFERED=1 | |
ENV PYTHONDONTWRITEBYTECODE=1 | |
# Install system dependencies | |
RUN apt-get update && apt-get install -y \ | |
build-essential \ | |
curl \ | |
software-properties-common \ | |
git \ | |
&& rm -rf /var/lib/apt/lists/* | |
# Copy requirements first for better Docker layer caching | |
COPY requirements.txt . | |
# Install Python dependencies | |
RUN pip install --no-cache-dir -r requirements.txt | |
# Copy the application code | |
COPY . . | |
# Make the startup script executable | |
RUN chmod +x start.sh | |
# Create a non-root user for security | |
RUN useradd -m -u 1000 user | |
USER user | |
# Expose the port that Streamlit runs on | |
EXPOSE 7860 | |
# Health check | |
HEALTHCHECK CMD curl --fail http://localhost:7860/_stcore/health | |
# Command to run the application | |
CMD ["./start.sh"] |