Skip to content

Commit 4ff07ef

Browse files
authored
Add ca-certificates to the packages installed for the haproxy/syslogsrv build (#18)
This required to pull dependencies from the internet, as recommended in the README. The development environment we have internally provides a container that is *very nearly* the same as the usual ubuntu image, but not quite the same, in particular it appears to have this pre-installed which explains how we missed this until now.
1 parent ca46e1e commit 4ff07ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ ARG git_proxy
5151
WORKDIR /workspace
5252
RUN <<EOF
5353
apt-get update
54-
apt-get install -y --no-install-recommends cmake g++ make git
54+
apt-get install -y --no-install-recommends cmake g++ make git ca-certificates
5555
apt-get clean
5656
rm -rf /var/lib/apt/lists/* # Remove the apt cache lists to keep image size down
5757
EOF
@@ -72,7 +72,7 @@ WORKDIR /workspace
7272
STOPSIGNAL SIGUSR1
7373
RUN <<EOF
7474
apt-get update
75-
apt-get install -y --no-install-recommends cmake g++ make git lua5.3 lua5.3-dev libpcre3-dev libssl-dev lua-penlight
75+
apt-get install -y --no-install-recommends cmake g++ make git lua5.3 lua5.3-dev libpcre3-dev libssl-dev lua-penlight ca-certificates
7676
apt-get clean
7777
rm -rf /var/lib/apt/lists/* # Remove the apt cache lists to keep image size down
7878
git config --global http.proxy "${git_proxy}"

0 commit comments

Comments
 (0)