forked from stp/stp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
61 lines (54 loc) · 1.56 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
# This Dockerfile builds a statically-compiled instance of STP with MiniSat and
# CryptoMiniSat that evaluates SMTLIB2 inputs provided on standard input:
#
# docker build --tag stp/stp .
# cat example.smt2 | docker run --rm -i stp/stp
FROM ubuntu:22.04 as builder
# Install dependencies
RUN apt-get update \
&& apt-get install --no-install-recommends -y \
bison \
ca-certificates \
cmake \
flex \
g++ \
gcc \
libboost-program-options-dev \
libm4ri-dev \
make \
wget \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
# Build CMS
WORKDIR /cms
RUN wget -O cryptominisat.tgz https://github.com/msoos/cryptominisat/archive/5.8.0.tar.gz \
&& tar xvf cryptominisat.tgz --strip-components 1 \
&& mkdir build && cd build \
&& cmake .. \
-DCMAKE_BUILD_TYPE=Release \
-DENABLE_ASSERTIONS=OFF \
-DSTATICCOMPILE=ON \
&& cmake --build . \
&& cmake --install .
# Build MiniSat
WORKDIR /minisat
RUN wget -O minisat.tgz https://github.com/stp/minisat/archive/releases/2.2.1.tar.gz \
&& tar xvf minisat.tgz --strip-components 1 \
&& mkdir build && cd build \
&& cmake .. \
-DCMAKE_BUILD_TYPE=Release \
&& cmake --build . \
&& cmake --install .
# Build STP
WORKDIR /stp/build
COPY . /stp
RUN cmake .. \
-DCMAKE_BUILD_TYPE=Release \
-DENABLE_ASSERTIONS=OFF \
-DSTATICCOMPILE=ON \
&& cmake --build . \
&& cmake --install .
# Set up to run in a minimal container
FROM scratch
COPY --from=builder /usr/local/bin/stp /stp
ENTRYPOINT ["/stp", "--SMTLIB2"]