Skip to content

Commit

Permalink
Merge branch 'main' into T366057
Browse files Browse the repository at this point in the history
  • Loading branch information
vivian-rook authored May 28, 2024
2 parents 958127f + 02dab3f commit 3995922
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions images/renderer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

COPY requirements.txt /tmp/requirements.txt
RUN pip3 --no-cache-dir install -r /tmp/requirements.txt

# We don't care about breaking system packages since this is a container
RUN pip3 --break-system-packages --no-cache-dir install -r /tmp/requirements.txt

# something about the --no-cache-dir keeps pyrsistent from visibly installing
RUN pip3 install pyrsistent
RUN pip3 --break-system-packages install pyrsistent

COPY renderer.py /srv/renderer.py
COPY basic.tpl /srv/basic.tpl
Expand Down

0 comments on commit 3995922

Please sign in to comment.