Space non working * image result - > URL error, pleace contact the admin
#10
by mpjay - opened
FROM python:3.13-slim
Instalar dependĂȘncias bĂĄsicas
RUN apt-get update && apt-get install -y
build-essential
ffmpeg
&& rm -rf /var/lib/apt/lists/*
Instalar dependĂȘncias Python
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
Corrigir ausĂȘncia do audioop
RUN pip install pyaudioop
COPY . .
CMD ["python", "app.py"]
pip install pyaudioop
gradio
pydub
pyaudioop
FROM python:3.12-slim
pyenv install 3.12.2
pyenv local 3.12.2
pip install pyaudioop
pip install --upgrade pydub gradio
pip install --upgrade pydub gradio
FROM python:3.13-slim
Instalar dependĂȘncias bĂĄsicas
RUN apt-get update && apt-get install -y
build-essential
ffmpeg
&& rm -rf /var/lib/apt/lists/*
Instalar dependĂȘncias Python
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
Corrigir ausĂȘncia do audioop
RUN pip install pyaudioop
COPY . .
CMD ["python", "app.py"]
