agwefgw / Dockerfile
chaowenguo's picture
Update Dockerfile
33b8c20 verified
raw
history blame contribute delete
309 Bytes
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"]