File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ ENV DEBIAN_FRONTEND="noninteractive"
7
7
8
8
RUN apt-get update
9
9
10
- RUN apt-get -- no-install-recommends install -y \
10
+ RUN apt-get -y -- no-install-recommends install \
11
11
build-essential \
12
12
clang \
13
13
cmake \
@@ -30,7 +30,8 @@ RUN apt-get --no-install-recommends install -y \
30
30
tzdata \
31
31
unzip \
32
32
vim \
33
- uuid-dev
33
+ uuid-dev \
34
+ ca-certificates
34
35
35
36
USER build-user
36
37
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ RUN groupadd -g 998 build-user && \
5
5
6
6
ENV DEBIAN_FRONTEND="noninteractive"
7
7
8
- RUN apt update
8
+ RUN apt-get update
9
9
10
- RUN apt -y install \
10
+ RUN apt-get -y --no- install-recommends install \
11
11
build-essential \
12
12
clang \
13
13
cmake \
@@ -30,7 +30,8 @@ RUN apt -y install \
30
30
tzdata \
31
31
unzip \
32
32
vim \
33
- uuid-dev
33
+ uuid-dev \
34
+ ca-certificates
34
35
35
36
USER build-user
36
37
You can’t perform that action at this time.
0 commit comments