Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
onurctirtir committed Feb 16, 2024
1 parent 5c36cfc commit 3c3f1e6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion circleci/images/citusupgradetester/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ RUN chown -R circleci /usr/lib/postgresql/ /usr/include/postgresql/ /usr/share/p
COPY ./files/etc/requirements.txt /tmp/etc/

# this image is only used for testing purposes, so should be okay to overwrite system-managed packages
RUN pip3 install -Ir /tmp/etc/requirements.txt --break-system-packages
RUN pip3 install -Ir /tmp/etc/requirements.txt --user

WORKDIR /home/circleci

Expand Down
2 changes: 1 addition & 1 deletion circleci/images/failtester/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@ RUN mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgres
COPY ./files/etc/requirements.txt /tmp/etc/

# this image is only used for testing purposes, so should be okay to overwrite system-managed packages
RUN pip3 install -Ir /tmp/etc/requirements.txt --break-system-packages
RUN pip3 install -Ir /tmp/etc/requirements.txt --user

WORKDIR /home/circleci
2 changes: 1 addition & 1 deletion circleci/images/pgupgradetester/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ RUN mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgres
COPY ./files/etc/requirements.txt /tmp/etc/

# this image is only used for testing purposes, so should be okay to overwrite system-managed packages
RUN pip3 install -Ir /tmp/etc/requirements.txt --break-system-packages
RUN pip3 install -Ir /tmp/etc/requirements.txt --user
2 changes: 1 addition & 1 deletion circleci/images/stylechecker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ RUN apk add --no-cache --virtual installdeps \
&& cd ../.. \
&& rm -rf uncrustify-uncrustify-0.68.1/ \
# this image is only used for testing purposes, so should be okay to overwrite system-managed packages
&& pip3 install -Ir /tmp/etc/requirements.txt --break-system-packages \
&& pip3 install -Ir /tmp/etc/requirements.txt --user \
&& apk del installdeps

0 comments on commit 3c3f1e6

Please sign in to comment.