audio-waveform-studio / Dockerfile
duqing2026's picture
Update app with fixes, local assets, and default data generation
ce04f19
Raw
History Blame Contribute Delete
203 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Expose the port (optional documentation)
EXPOSE 7860
CMD ["python", "app.py"]