Skip to content
Closed
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
3 changes: 2 additions & 1 deletion dockers/docker-platform-monitor/Dockerfile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ RUN apt-get install -y -t bookworm-backports \
# doesn't ensure all dependencies are installed in the container. So here we
# install any dependencies required by the Arista sonic_platform package.
# TODO: eliminate the need to install these explicitly.
RUN pip3 install grpcio==1.51.1 \
RUN pip3 install setuptools \
pip3 install grpcio==1.51.1 \
grpcio-tools==1.51.1 --no-build-isolation

# Barefoot platform vendors' sonic_platform packages import these Python libraries (and netifaces)
Expand Down
4 changes: 3 additions & 1 deletion sonic-slave-bookworm/Dockerfile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,9 @@ RUN pip3 install pyyaml-include

# For building sonic_ycabled
# Note: Match version in bookworm
RUN pip3 install grpcio==1.51.1 grpcio-tools==1.51.1 --no-build-isolation
RUN pip3 install setuptools \
pip3 install grpcio==1.51.1 \
grpcio-tools==1.51.1 --no-build-isolation

# For running Python unit tests
RUN pip3 install pytest-runner==5.2
Expand Down