From 45a40c8640c954afc00e3cb1e0670884edde020d Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Fri, 24 Jul 2020 14:46:09 -0700 Subject: [PATCH] new Dockerfile to run locally the test on an Ubuntu 20.04 system --- docker/Dockerfile.ubuntu_groovy | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 docker/Dockerfile.ubuntu_groovy diff --git a/docker/Dockerfile.ubuntu_groovy b/docker/Dockerfile.ubuntu_groovy new file mode 100644 index 00000000..6ab4c6eb --- /dev/null +++ b/docker/Dockerfile.ubuntu_groovy @@ -0,0 +1,13 @@ +# Build time +FROM ubuntu:groovy as build + +ENV DEBIAN_FRONTEND noninteractive +RUN apt-get update + +RUN apt-get -y install g++ libssl-dev libz-dev make python ninja-build +RUN apt-get -y install cmake + +COPY . /opt +WORKDIR /opt + +RUN ["make", "test"]