Skip to content

Commit 715370a

Browse files
committed
Fix: missing CA certificates
1 parent d9d8088 commit 715370a

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

swift-ci/master/debian/10/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ENV DEBIAN_FRONTEND="noninteractive"
77

88
RUN apt-get update
99

10-
RUN apt-get --no-install-recommends install -y \
10+
RUN apt-get -y --no-install-recommends install \
1111
build-essential \
1212
clang \
1313
cmake \
@@ -30,7 +30,8 @@ RUN apt-get --no-install-recommends install -y \
3030
tzdata \
3131
unzip \
3232
vim \
33-
uuid-dev
33+
uuid-dev \
34+
ca-certificates
3435

3536
USER build-user
3637

swift-ci/master/debian/9/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ RUN groupadd -g 998 build-user && \
55

66
ENV DEBIAN_FRONTEND="noninteractive"
77

8-
RUN apt update
8+
RUN apt-get update
99

10-
RUN apt -y install \
10+
RUN apt-get -y --no-install-recommends install \
1111
build-essential \
1212
clang \
1313
cmake \
@@ -30,7 +30,8 @@ RUN apt -y install \
3030
tzdata \
3131
unzip \
3232
vim \
33-
uuid-dev
33+
uuid-dev \
34+
ca-certificates
3435

3536
USER build-user
3637

0 commit comments

Comments
 (0)