Skip to content

Commit 67f9f5a

Browse files
committed
Fix builds due to pip breakage
1 parent 6111c83 commit 67f9f5a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docker/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ RUN apt-get install -y cron python3 python3-requests unzip nginx-light
44
# We install pip, jinja and delete pip afterwards in same step to keep final
55
# image size small.
66
RUN apt-get install -y --no-install-recommends python3-pip && \
7-
pip3 install j2cli && apt-get remove -y python3-pip && apt-get autoremove -y
7+
pip3 install --break-system-packages j2cli && apt-get remove -y python3-pip \
8+
&& apt-get autoremove -y
89
RUN rm -rf /var/www/html/*
910
WORKDIR "/"
1011

0 commit comments

Comments
 (0)