Update docker file to support ubuntu 20.04 (#1439)

pull/1444/head
Nikhil Parasaram 4 years ago committed by GitHub
parent 1c636c20ea
commit 9283f018fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      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 \

Loading…
Cancel
Save