audio_summarizer / Dockerfile
Jeongsoo1975
fix: Optimize for Hugging Face Spaces deployment - Add Dockerfile and simplified app version - Fix app.launch() parameters for Spaces - Create fallback simple version without API dependencies
94d3c15
raw
history blame contribute delete
187 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . /code
CMD ["python", "app.py"]