From 9283f018fa126ec3a78ab33537cb526da900c801 Mon Sep 17 00:00:00 2001 From: Nikhil Parasaram Date: Wed, 21 Oct 2020 22:07:07 +0530 Subject: [PATCH] Update docker file to support ubuntu 20.04 (#1439) --- Dockerfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4711653e..4ab8dd42 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,6 @@ -FROM ubuntu:bionic +FROM ubuntu:focal + +ARG DEBIAN_FRONTEND=noninteractive # Space-separated version string without leading 'v' (e.g. "0.4.21 0.4.22") ARG SOLC @@ -8,10 +10,11 @@ RUN apt-get update \ libsqlite3-0 \ libsqlite3-dev \ && apt-get install -y \ + apt-utils \ build-essential \ locales \ - python-pip-whl=9.0.1-2 \ - python3-pip=9.0.1-2 \ + python-pip-whl \ + python3-pip \ libleveldb-dev \ python3-setuptools \ software-properties-common \