Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e54497f

Browse filesBrowse files
author
Takashi Matsuo
authored
testing: upgrade the base image to Ubuntu 18.04 (GoogleCloudPlatform#4156)
1 parent 8d1b1aa commit e54497f
Copy full SHA for e54497f

File tree

Expand file treeCollapse file tree

1 file changed

+6
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+6
-2
lines changed

‎.kokoro/docker/Dockerfile

Copy file name to clipboardExpand all lines: .kokoro/docker/Dockerfile
+6-2Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Sometimes renovate tries to update it to 16.10. I don't think it's
1616
# worthwhile because 16.04 is an LTS release. Maybe we should think
1717
# about upgrading to 18.04 (the next LTS) instead.
18-
FROM ubuntu:16.04
18+
FROM ubuntu:18.04
1919

2020
ENV DEBIAN_FRONTEND noninteractive
2121

@@ -34,7 +34,9 @@ RUN apt-get update \
3434
build-essential \
3535
ca-certificates \
3636
curl \
37+
dirmngr \
3738
git \
39+
gpg-agent \
3840
graphviz \
3941
libbz2-dev \
4042
libdb5.3-dev \
@@ -51,6 +53,7 @@ RUN apt-get update \
5153
software-properties-common \
5254
ssh \
5355
sudo \
56+
systemd \
5457
tcl \
5558
tcl-dev \
5659
tk \
@@ -94,6 +97,7 @@ RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - \
9497
# Install the desired versions of Python.
9598
RUN set -ex \
9699
&& export GNUPGHOME="$(mktemp -d)" \
100+
&& echo "disable-ipv6" >> "${GNUPGHOME}/dirmngr.conf" \
97101
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys \
98102
# 2.7.17 (Benjamin Peterson)
99103
C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF \
@@ -123,7 +127,7 @@ RUN set -ex \
123127
&& make install \
124128
&& ldconfig \
125129
; done \
126-
&& rm -r "${GNUPGHOME}" \
130+
&& rm -rf "${GNUPGHOME}" \
127131
&& rm -rf /usr/src/python* \
128132
&& rm -rf ~/.cache/
129133

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.