mudado o motor de renderização para o nicegui
This commit is contained in:
16
Dockerfile
Executable file
16
Dockerfile
Executable 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"]
|
||||
Reference in New Issue
Block a user