20 lines
533 B
Plaintext
20 lines
533 B
Plaintext
|
FROM satcomp-infrastructure:common
|
||
|
USER root
|
||
|
# Install required softwares
|
||
|
RUN apt-get update \
|
||
|
&& DEBIAN_FRONTEND=noninteractive apt install -y cmake build-essential zlib1g-dev libopenmpi-dev wget unzip build-essential zlib1g-dev cmake python3 build-essential gfortran wget curl libboost-all-dev
|
||
|
|
||
|
|
||
|
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/
|
||
|
RUN make -j
|