coordgen 0.2.2

A thin rust wrapper around coordgen
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
FROM centos:8

RUN sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
RUN sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*
RUN yum install -y gcc gcc-c++ make cmake
# RUN yum install cmake
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > install.sh
RUN sh install.sh -y
ENV PATH=/root/.cargo/bin:$PATH
WORKDIR app
COPY . .
CMD cargo test