Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade dependencies used in alpine base image #7675

Merged
merged 2 commits into from
Feb 22, 2024
Merged
Changes from 1 commit
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
14 changes: 7 additions & 7 deletions packages/discovery-provider/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ RUN apk update && \
linux-headers \
nodejs \
npm \
python3=3.11.6-r0 \
python3-dev=3.11.6-r0 \
python3=3.11.8-r0 \
dharit-tan marked this conversation as resolved.
Show resolved Hide resolved
python3-dev=3.11.8-r0 \
py3-numpy \
py3-pip \
py3-scipy \
Expand Down Expand Up @@ -54,11 +54,11 @@ RUN curl -O 'http://openresty.org/package/admin@openresty.com-5ea678a6.rsa.pub'
RUN echo 'http://dl-cdn.alpinelinux.org/alpine/v3.10/main' >> /etc/apk/repositories && \
apk update && \
apk add \
libpq=15.5-r0 \
postgresql15-client=15.5-r0 \
postgresql15-contrib=15.5-r0 \
postgresql15-dev=15.5-r0 \
postgresql15=15.5-r0
libpq=15.6-r0 \
postgresql15-client=15.6-r0 \
postgresql15-contrib=15.6-r0 \
postgresql15-dev=15.6-r0 \
postgresql15=15.6-r0
dharit-tan marked this conversation as resolved.
Show resolved Hide resolved

RUN python3 -m pip install --upgrade pip

Expand Down