this_algorithm/test-data/generator/Dockerfile
2023-02-22 18:41:45 -05:00

11 lines
351 B
Docker

FROM ubuntu:latest
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y libgflags-dev libgoogle-glog-dev libgtest-dev libssl-dev cmake git g++
RUN mkdir Source
RUN git clone https://github.com/google/s2geometry.git /Source/s2geometry
RUN git clone https://github.com/abseil/abseil-cpp.git /Source/abseil-cpp
WORKDIR /Source/src