Spaces:
Sleeping
Sleeping
File size: 1,020 Bytes
34059a0 61fb24c 823f514 34059a0 665849b 34059a0 | 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 | FROM python:3.11-slim
WORKDIR /app
# Install minimal system dependencies
RUN apt-get update -qq && \
apt-get install -y --no-install-recommends curl && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Copy requirements
COPY requirements.txt .
# Install Python dependencies
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
# Copy application files
COPY app.py .
COPY translations_dict.json .
COPY scripts/ scripts/
# Download IndicTrans2 model
RUN python scripts/download_indictrans2.py && \
test -f models/indictrans2-en-mr/config.json || exit 1
# Create non-root user
RUN useradd -m -u 1000 appuser && \
chown -R appuser:appuser /app
USER appuser
# Environment variables
ENV PORT=7860 \
HOST=0.0.0.0 \
PYTHONUNBUFFERED=1
EXPOSE 7860
# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --retries=3 \
CMD curl -f http://localhost:${PORT}/health || exit 1
# Start application
CMD ["python", "app.py"]
|