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"]