From 000ebc11e9a18b11f273d113a2a58b5911f54d9c Mon Sep 17 00:00:00 2001 From: Mark Street Date: Sun, 3 Aug 2025 10:39:41 +0000 Subject: [PATCH] Fixup Dockerfile --- Dockerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index a574322..530ad54 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,12 +6,11 @@ COPY /packages.txt / RUN apt-get update && apt-get install -y $(cat /packages.txt) -ENV VIRTUAL_ENV=/opt/venv -RUN python3 -m venv $VIRTUAL_ENV -ENV PATH="$VIRTUAL_ENV/bin:$PATH" - COPY requirements.txt / -RUN python3 -m pip install -r /requirements.txt --no-cache-dir +RUN python3 -m pip install -r /requirements.txt --no-cache-dir --break-system-packages + +COPY tools/n64splat/requirements.txt /splat-requirements.txt +RUN python3 -m pip install -r /splat-requirements.txt --no-cache-dir --break-system-packages COPY .bash_aliases /root/.bash_aliases