Skip to content

Commit 269f8fd

Browse files
author
Pieter van Beerendonk
committed
remove --break-system-packages flags
1 parent 40651c1 commit 269f8fd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docker/backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN mkdir code
1010
WORKDIR /code
1111
COPY requirements.txt ./
1212

13-
RUN pip3 install -Ur requirements.txt --break-system-packages
13+
RUN pip3 install -Ur requirements.txt
1414

1515
# run app
1616
EXPOSE 5000

docker/tester/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ WORKDIR /code
1919

2020
COPY requirements.txt /requirements.txt
2121
COPY tests/requirements.txt /requirements.tests.txt
22-
RUN pip3 -q install -Ur /requirements.txt --break-system-packages
23-
RUN pip3 -q install -Ur /requirements.tests.txt --break-system-packages
22+
RUN pip3 -q install -Ur /requirements.txt
23+
RUN pip3 -q install -Ur /requirements.tests.txt
2424

2525
# run app
2626
ENTRYPOINT ["pytest"]

0 commit comments

Comments
 (0)