mudado o motor de renderização para o nicegui

This commit is contained in:
2026-01-26 23:07:17 +00:00
commit 56df0b1d1f
13 changed files with 791 additions and 0 deletions

16
Dockerfile Executable file
View File

@@ -0,0 +1,16 @@
FROM ubuntu:22.04
ENV DEBIAN_FRONTEND=noninteractive
# Instala FFmpeg, Drivers Intel e Python
RUN apt-get update && \
apt-get install -y python3 python3-pip intel-media-va-driver-non-free i965-va-driver-shaders libva-drm2 libva-x11-2 vainfo ffmpeg jq && \
rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip3 install --no-cache-dir -r requirements.txt
COPY app /app
# NiceGUI roda na porta 8080 por padrão
CMD ["python3", "main.py"]