Vita builds for the first time

This commit is contained in:
2026-04-15 05:52:30 -05:00
parent 46a5403511
commit 1ee5ec7b43
20 changed files with 439 additions and 3 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM vitasdk/vitasdk:latest
WORKDIR /workdir
# Install vitaGL and its dependencies (vitashark, SceShaccCg) via vdpm
RUN which vdpm
# Install Python (needed for Dusk code generation tools)
RUN apk add --no-cache \
python3 \
py3-pip \
py3-dotenv
VOLUME ["/workdir"]