Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

14 lines
223 B
Docker

FROM ubuntu:18.04
RUN apt update -y \
&& apt upgrade -y \
&& apt install -y \
cmake \
g++-8 \
git \
libssl-dev \
make \
&& apt-get autoclean
ENV CXX=/usr/bin/g++-8