Skip to content

Commit 43448dd

Browse files
committed
Dockerfile fixed.
1 parent ac25191 commit 43448dd

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

Diff for: Dockerfile

+11-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@ FROM iantorres/boosted:amd64-latest
22

33
COPY . .
44

5-
RUN cmake . -DBUILD_TESTS=ON \
5+
RUN mkdir build \
6+
&& cd build \
7+
&& cmake .. -DBUILD_TESTS=ON \
68
&& make \
7-
&& cd bin \
8-
&& ./tests
9+
&& cd ../bin \
10+
&& ./tests
11+
12+
RUN mkdir install \
13+
&& cd install \
14+
&& cmake .. -DBUILD_TESTS=OFF \
15+
&& make \
16+
&& make install

0 commit comments

Comments
 (0)