Mod Dockerfile
Some checks failed
CI Pipeline / Build Docker Image (push) Failing after 23s
CI Pipeline / Test US10 Build (push) Has been skipped
CI Pipeline / Test PAL Build (push) Has been skipped

This commit is contained in:
2025-09-12 14:41:57 +02:00
parent 34b8665cf8
commit 5f4c924605

View File

@@ -14,6 +14,9 @@ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sed 's#/proc/sel
ENV PATH=/opt/cargo/bin:$PATH ENV PATH=/opt/cargo/bin:$PATH
# Install Python dependencies # Install Python dependencies
COPY requirements.txt ./
COPY tools/n64splat/requirements.txt ./tools/n64splat/requirements.txt
RUN cat requirements.txt
RUN python3 -m pip install -r requirements.txt RUN python3 -m pip install -r requirements.txt
WORKDIR /banjo WORKDIR /banjo