Skip to content

Commit 4ad2ac7

Browse files
committed
fix(docker): Update Dockerfile to install libssl-dev before running dependency script
1 parent cf8c981 commit 4ad2ac7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ 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 /install_deps_ubuntu_24_04.sh && rm /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
5859

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

0 commit comments

Comments
 (0)