Skip to content

Commit b579b36

Browse files
committed
revert(base-images): Remove unnecessary libssl-dev installation
This reverts the change that added libssl-dev to the ubuntu-24-04 base-runner image. This dependency was found to be unnecessary as the build works without it, as seen in trial builds.
1 parent 27a815e commit b579b36

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

infra/base-images/base-runner/ubuntu-24-04.Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@ RUN ldconfig && \
5454
ln -s /usr/local/bin/python3.11 /usr/local/bin/python
5555

5656
COPY install_deps_ubuntu_24_04.sh /
57-
RUN apt-get update && apt-get install -y libssl-dev && \
58-
/install_deps_ubuntu_24_04.sh && rm /install_deps_ubuntu_24_04.sh
57+
RUN /install_deps_ubuntu_24_04.sh && rm /install_deps_ubuntu_24_04.sh
5958

6059
ENV CODE_COVERAGE_SRC=/opt/code_coverage
6160
# Pin coverage to the same as in the base builder:

0 commit comments

Comments
 (0)