-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Fedor Shmarov (PGR)
committed
May 21, 2016
1 parent
684f20a
commit fd01e3f
Showing
4 changed files
with
17 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,4 @@ | ||
FROM dreal/dreal3 | ||
MAINTAINER Fedor Shmarov <[email protected]> | ||
RUN apt-get -y install libgsl0-dev | ||
COPY . /usr/local/src/probreach | ||
WORKDIR /usr/local/src/probreach | ||
RUN mkdir -p /build/release | ||
WORKDIR /usr/local/src/probreach/build/release | ||
RUN cmake ../../ | ||
RUN make | ||
ENTRYPOINT ["/usr/local/src/probreach/bin/ProbReach"] | ||
COPY bin/ProbReach /usr/local/bin/ProbReach | ||
#ENTRYPOINT ProbReach |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM dreal/dreal3-build | ||
MAINTAINER Fedor Shmarov <[email protected]> | ||
VOLUME /usr/local/src/probreach/src | ||
VOLUME /usr/local/src/probreach/bin | ||
RUN apt-get -y install libgsl0-dev | ||
RUN mkdir -p /usr/local/src/probreach/build/release | ||
WORKDIR /usr/local/src/probreach/build/release | ||
COPY build.sh . | ||
ENTRYPOINT /bin/bash build.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
|
||
cmake ../../src | ||
make |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters