FROM python:3.13-slim AS builder
WORKDIR /app
RUN apt update && \
apt install -y supervisor freeglut3-dev libglib2.0-0 libsm6 libxrender1 libxext6 \
&& apt clean
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["supervisord", "-n", "-c", "/app/supervisord.conf"]
sim, até porque existe uma forma de instalar bibliotecas sem update ...