audioshield / Dockerfile
hiten
Trigger Docker rebuild for UI changes (GitHub nav link, remove View Demo/Launch buttons)
4e6255c
Raw
History Blame Contribute Delete
418 Bytes
FROM python:3.10-slim
WORKDIR /app
RUN apt-get update && apt-get install -y libsndfile1 && rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN ls -lh deployment_model.pt
EXPOSE 7860
# Rebuild trigger: updated static frontend with GitHub nav link, removed View Demo & Launch buttons
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]