cloud-sat/docker/common.dockerfile

23 lines
573 B
Plaintext
Raw Normal View History

2023-03-29 07:12:33 +00:00
FROM satcomp-infrastructure:common
USER root
# Install required softwares
2023-04-03 03:14:28 +00:00
RUN sed -i s@/archive.ubuntu.com/@/mirrors.bfsu.edu.cn/@g /etc/apt/sources.list
2023-03-30 10:50:38 +00:00
RUN apt update
RUN DEBIAN_FRONTEND=noninteractive apt install -y cmake build-essential zlib1g-dev libopenmpi-dev wget unzip python3 gfortran curl
RUN apt install -y libboost-all-dev
2023-03-29 07:12:33 +00:00
WORKDIR /
RUN git clone https://gitea.yuhangq.com:8/YuhangQ/cloud-sat
WORKDIR /cloud-sat/kissat-inc
RUN ./configure
RUN make -j 16
WORKDIR /cloud-sat/m4ri-20140914
RUN ./configure
RUN make -j 16
WORKDIR /cloud-sat/
2023-03-30 10:50:38 +00:00
RUN make -j 16