Echo-Audio-stream / Dockerfile
Name108's picture
Update Dockerfile
e383a89 verified
Raw
History Blame Contribute Delete
178 Bytes
FROM python:3.9
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY index.html .
COPY app.py .
EXPOSE 7860
CMD ["python", "app.py"]