diff --git a/.circleci/Dockerfile.ubuntu-18.04 b/.circleci/Dockerfile.ubuntu-18.04 new file mode 100644 index 000000000..490b8f670 --- /dev/null +++ b/.circleci/Dockerfile.ubuntu-18.04 @@ -0,0 +1,18 @@ +FROM ubuntu:18.04 + +# language-pack-en included to support the en_US LANG setting. +# iproute2 necessary for automatic address detection/assignment. + +RUN apt-get --quiet update && \ + apt-get --quiet --yes install git && \ + apt-get --quiet --yes install \ + sudo \ + build-essential \ + python2.7 \ + python2.7-dev \ + libffi-dev \ + libssl-dev \ + libyaml-dev \ + virtualenv \ + language-pack-en \ + iproute2