Github: qmc-decoder

docker run -it alpine /bin/sh

# 进入到镜像容器中后安装Git和CMake
# 如果你是在国内,先更换系统镜像源为中科大镜像
sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
apk fix
# 安装Git和CMake等
apk --no-cache --update add git git-lfs less openssh
git lfs install
apk add cmake make g++ gcc openssl-dev
# 克隆代码
git clone https://github.com/Presburger/qmc-decoder.git
cd qmc-decoder
git submodule update --init
mkdir build
cd build
cmake ..
make