Spaces:
Runtime error
Runtime error
File size: 1,417 Bytes
e9cd410 0c961d2 e9cd410 0c961d2 e9cd410 0c961d2 e9cd410 0c961d2 e9cd410 0c961d2 e9cd410 0c961d2 e9cd410 0c961d2 e9cd410 0c961d2 e9cd410 | 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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | # Multi-stage Dockerfile for AI Notes Summarizer
# Stage 1: Base image with system dependencies
FROM python:3.10-slim as base
# Set environment variables
ENV PYTHONUNBUFFERED=1 \
PYTHONDONTWRITEBYTECODE=1 \
PIP_NO_CACHE_DIR=1 \
PIP_DISABLE_PIP_VERSION_CHECK=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/*
# Create non-root user for security
RUN useradd --create-home --shell /bin/bash app
# Stage 2: Dependencies installation
FROM base as dependencies
# 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
# Stage 3: Application
FROM dependencies as application
# Copy application code
COPY --chown=app:app . .
# Create necessary directories
RUN mkdir -p /app/uploads /app/logs && \
chown -R app:app /app
# Switch to non-root user
USER app
# Expose port
EXPOSE 8501
# Health check
HEALTHCHECK --interval=30s --timeout=30s --start-period=5s --retries=3 \
CMD curl -f http://localhost:8501/_stcore/health || exit 1
# Default command
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0", "--server.headless=true", "--server.fileWatcherType=none", "--browser.gatherUsageStats=false"]
|