Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions services/backup-daemon/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ RUN apt-get --no-install-recommends install -y comerr-dev \
openssl curl \
vim \
locales
RUN python3 -m pip install -U setuptools==82.0.1 wheel==0.46.2
RUN python3 -m pip install -U setuptools==82.0.1 wheel==0.47.0

COPY docker/requirements.txt /root/requirements.txt
RUN python3 -m pip install --no-cache-dir -r /root/requirements.txt \
&& python3 -m pip install --upgrade pip \
&& python3 -m pip install grpcio \
&& python3 -m pip install opentelemetry-distro opentelemetry-exporter-otlp opentelemetry-api opentelemetry-sdk opentelemetry-instrumentation-flask \
&& opentelemetry-bootstrap -a install \
&& python3 -m pip install "setuptools==82.0.1" "wheel==0.46.2" "jaraco.context==6.1.0" \
&& python3 -m pip install "setuptools==82.0.1" "wheel==0.47.0" "jaraco.context==6.1.0" \
&& pip3 uninstall -y pip \
&& apt-get remove -y --purge gcc-12 \
&& apt-get remove -y --purge python3-dev \
Expand Down
2 changes: 1 addition & 1 deletion services/backup-daemon/docker/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@ uritemplate==4.1.1
urllib3==2.6.3
websocket-client==1.4.2
Werkzeug==3.1.6
wheel==0.46.2
wheel==0.47.0
zipp==3.23.0
2 changes: 1 addition & 1 deletion services/patroni/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ RUN apt-get update && apt-get install -y postgresql-$PG_VERSION-credcheck
RUN apt-get install -y alien vmtouch openssh-server

RUN cat /root/.pip/pip.conf
RUN python3 -m pip install -U setuptools==78.1.1 wheel==0.38.0
RUN python3 -m pip install -U setuptools==82.0.1 wheel==0.47.0
RUN python3 -m pip install psutil patroni[kubernetes,etcd]==3.3.5 psycopg2==2.9.5 requests python-dateutil urllib3 six prettytable --no-cache
# Explicitly install patched libaom3 version
RUN apt-get --no-install-recommends install -y libaom3=3.3.0-1ubuntu0.1 || apt-get --no-install-recommends install -y libaom3
Expand Down
2 changes: 1 addition & 1 deletion services/upgrade/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN adduser -uid 26 -gid 26 postgres
# Install like base image
RUN apt-get --no-install-recommends install -y gcc-12 python3.11 python3-pip python3-dev wget

RUN python3 -m pip install --no-cache-dir --upgrade wheel==0.38.0 setuptools==78.1.1
RUN python3 -m pip install --no-cache-dir --upgrade wheel==0.47.0 setuptools==82.0.1

# Explicitly install patched libaom3 version
RUN apt-get --no-install-recommends install -y libaom3=3.3.0-1ubuntu0.1 || apt-get --no-install-recommends install -y libaom3
Expand Down
Loading