We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c4ad53 commit 8f2c915Copy full SHA for 8f2c915
Dockerfile
@@ -6,12 +6,11 @@ COPY /packages.txt /
6
7
RUN apt-get update && apt-get install -y $(cat /packages.txt)
8
9
-ENV VIRTUAL_ENV=/opt/venv
10
-RUN python3 -m venv $VIRTUAL_ENV
11
-ENV PATH="$VIRTUAL_ENV/bin:$PATH"
12
-
13
COPY requirements.txt /
14
-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
15
16
COPY .bash_aliases /root/.bash_aliases
17
0 commit comments