Armak/SED
0
1FROM python:3.8.52 3WORKDIR /app4 5COPY requirements.txt ./6 7RUN apt-get update \8 && apt-get install -y portaudio19-dev libsndfile1 ffmpeg \9 && pip install --no-cache-dir -r requirements.txt10 11COPY . .12 13ENV MPLCONFIGDIR=/tmp/matplotlib14 15RUN chmod -R 777 /app16 17EXPOSE 786018 19ENTRYPOINT ["python", "app.py"]20 