CLMARRARA's picture
Adicionado POC do front end
62dae3e
Raw
History Blame Contribute Delete
416 Bytes
FROM python:3.13-slim
WORKDIR /app
COPY ./requirements_front.txt ./requirements.txt
RUN apt-get update && apt-get install -y \
ffmpeg \
libgl1 \
libglib2.0-0
RUN pip install --no-cache-dir --upgrade pip setuptools wheel \
&& pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "-m", "streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]