-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
62 lines (51 loc) · 1.62 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
FROM ubuntu:16.04 as builder
LABEL maintainer="Mate Soos"
LABEL version="1.0"
LABEL Description="Approxmc"
# get curl, etc
RUN apt-get update && apt-get install --no-install-recommends -y software-properties-common
# RUN add-apt-repository -y ppa:ubuntu-toolchain-r/test
# RUN apt-get update
RUN apt-get install --no-install-recommends -y libboost-program-options-dev gcc g++ make cmake zlib1g-dev wget make libgmp-dev
# get M4RI
WORKDIR /
RUN wget https://bitbucket.org/malb/m4ri/downloads/m4ri-20200125.tar.gz
RUN tar -xvf m4ri-20200125.tar.gz
WORKDIR m4ri-20200125
RUN ./configure
RUN make \
&& make install
# build CMS
WORKDIR /
RUN wget https://github.com/msoos/cryptominisat/archive/5.8.0.tar.gz
RUN tar -xvf 5.8.0.tar.gz
WORKDIR /cryptominisat-5.8.0
RUN mkdir build
WORKDIR /cryptominisat-5.8.0/build
RUN cmake -DSTATICCOMPILE=ON ..
RUN make -j6 \
&& make install
# build approxmc
USER root
COPY . /home/solver/approxmc
WORKDIR /home/solver/approxmc
RUN mkdir build
WORKDIR /home/solver/approxmc/build
RUN cmake -DSTATICCOMPILE=ON ..
RUN make -j6 \
&& make install
# set up for running
FROM alpine:latest
COPY --from=builder /usr/local/bin/approxmc /usr/local/bin/
ENTRYPOINT ["/usr/local/bin/approxmc"]
# --------------------
# HOW TO USE
# --------------------
# on file through STDIN:
# zcat mizh-md5-47-3.cnf.gz | docker run --rm -i -a stdin -a stdout msoos/approxmc
# on a file:
# docker run --rm -v `pwd`/myfile.cnf.gz:/in msoos/approxmc in
# echo through STDIN:
# echo "1 2 0" | docker run --rm -i -a stdin -a stdout msoos/approxmc
# hand-written CNF:
# docker run --rm -ti -a stdin -a stdout msoos/approxmc