Skip to content

Commit 8f2c915

Browse files
authored
Fixup Dockerfile (#29)
1 parent 0c4ad53 commit 8f2c915

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

Dockerfile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@ COPY /packages.txt /
66

77
RUN apt-get update && apt-get install -y $(cat /packages.txt)
88

9-
ENV VIRTUAL_ENV=/opt/venv
10-
RUN python3 -m venv $VIRTUAL_ENV
11-
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
12-
139
COPY requirements.txt /
14-
RUN python3 -m pip install -r /requirements.txt --no-cache-dir
10+
RUN python3 -m pip install -r /requirements.txt --no-cache-dir --break-system-packages
11+
12+
COPY tools/n64splat/requirements.txt /splat-requirements.txt
13+
RUN python3 -m pip install -r /splat-requirements.txt --no-cache-dir --break-system-packages
1514

1615
COPY .bash_aliases /root/.bash_aliases
1716

0 commit comments

Comments
 (0)