HF Deploy
Deploy multilingual transliteration app to Hugging Face Spaces
d14e502
raw
history blame contribute delete
379 Bytes
FROM python:3.9-slim
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
git \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements first for better caching
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY . .
# Expose port
EXPOSE 7860
# Run Gradio app
CMD ["python", "app.py"]