添加 Shadertool(谁需要??????)
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-10-12 13:36:54 +08:00
parent 0ca901e7b1
commit 87be1916ee
6 changed files with 308 additions and 1 deletions

View File

@ -4,6 +4,15 @@ FROM python:3.13-slim AS base
ENV VIRTUAL_ENV=/app/.venv \
PATH="/app/.venv/bin:$PATH"
RUN apt-get update && \
apt-get install -y --no-install-recommends \
libfontconfig1 \
libgl1 \
libegl1 \
libglvnd0 \
mesa-vulkan-drivers \
&& rm -rf /var/lib/apt/lists/*
FROM base AS builder