File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Original file line number Diff line number Diff line change 15
15
# Sometimes renovate tries to update it to 16.10. I don't think it's
16
16
# worthwhile because 16.04 is an LTS release. Maybe we should think
17
17
# about upgrading to 18.04 (the next LTS) instead.
18
- FROM ubuntu:16 .04
18
+ FROM ubuntu:18 .04
19
19
20
20
ENV DEBIAN_FRONTEND noninteractive
21
21
@@ -34,7 +34,9 @@ RUN apt-get update \
34
34
build-essential \
35
35
ca-certificates \
36
36
curl \
37
+ dirmngr \
37
38
git \
39
+ gpg-agent \
38
40
graphviz \
39
41
libbz2-dev \
40
42
libdb5.3-dev \
@@ -51,6 +53,7 @@ RUN apt-get update \
51
53
software-properties-common \
52
54
ssh \
53
55
sudo \
56
+ systemd \
54
57
tcl \
55
58
tcl-dev \
56
59
tk \
@@ -94,6 +97,7 @@ RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - \
94
97
# Install the desired versions of Python.
95
98
RUN set -ex \
96
99
&& export GNUPGHOME="$(mktemp -d)" \
100
+ && echo "disable-ipv6" >> "${GNUPGHOME}/dirmngr.conf" \
97
101
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys \
98
102
# 2.7.17 (Benjamin Peterson)
99
103
C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF \
@@ -123,7 +127,7 @@ RUN set -ex \
123
127
&& make install \
124
128
&& ldconfig \
125
129
; done \
126
- && rm -r "${GNUPGHOME}" \
130
+ && rm -rf "${GNUPGHOME}" \
127
131
&& rm -rf /usr/src/python* \
128
132
&& rm -rf ~/.cache/
129
133
You can’t perform that action at this time.
0 commit comments