Skip to content

Commit 9f56810

Browse files
ThomasMeschkediemol
authored andcommitted
Update base image to Ubuntu 18.04 (#862)
* Moved Dockerfiles to build for ubuntu 18.04 * Moved gnupg2 from NodeBase to Base image * Updated base image to even newer bionic beaver version
1 parent bb9c70a commit 9f56810

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Base/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM ubuntu:xenial-20181113
1+
FROM ubuntu:bionic-20181204
22
LABEL authors="Selenium <selenium-developers@googlegroups.com>"
33

44
#================================================
55
# Customize sources for apt-get
66
#================================================
7-
RUN echo "deb http://archive.ubuntu.com/ubuntu xenial main universe\n" > /etc/apt/sources.list \
8-
&& echo "deb http://archive.ubuntu.com/ubuntu xenial-updates main universe\n" >> /etc/apt/sources.list \
9-
&& echo "deb http://security.ubuntu.com/ubuntu xenial-security main universe\n" >> /etc/apt/sources.list
7+
RUN echo "deb http://archive.ubuntu.com/ubuntu bionic main universe\n" > /etc/apt/sources.list \
8+
&& echo "deb http://archive.ubuntu.com/ubuntu bionic-updates main universe\n" >> /etc/apt/sources.list \
9+
&& echo "deb http://security.ubuntu.com/ubuntu bionic-security main universe\n" >> /etc/apt/sources.list
1010

1111
# No interactive frontend during docker build
1212
ENV DEBIAN_FRONTEND=noninteractive \
@@ -28,6 +28,7 @@ RUN apt-get -qqy update \
2828
jq \
2929
curl \
3030
supervisor \
31+
gnupg2 \
3132
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* \
3233
&& sed -i 's/securerandom\.source=file:\/dev\/random/securerandom\.source=file:\/dev\/urandom/' ./usr/lib/jvm/java-8-openjdk-amd64/jre/lib/security/java.security
3334

0 commit comments

Comments
 (0)