Spaces:
Running
Running
File size: 309 Bytes
5690e11 33b8c20 5690e11 33b8c20 5690e11 f67dab3 5690e11 |
1 2 3 4 5 6 7 8 9 10 |
FROM ubuntu
WORKDIR /app
COPY . .
RUN <<EOF
chmod 777 /app
apt update
apt install -y --no-install-recommends ffmpeg python3-pip python3-pyaudio python3-numpy python3-wxgtk4.0
python3 -m pip install -r requirements.txt --break-system-packages
EOF
ENTRYPOINT ["streamlit", "run", "gui.py", "--server.port=7860"] |