Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7c38ad commit 823de00Copy full SHA for 823de00
.travis.yml
@@ -3,4 +3,4 @@ dist: trusty
3
services:
4
- docker
5
script:
6
- - make docker_build
+ - make -C contrib docker_build
Makefile
@@ -36,6 +36,3 @@ $(EXAMPLE_TARGETS): examples/build/%: examples/%.cpp matplotlibcpp.h
36
37
clean:
38
rm -f ${EXAMPLE_TARGETS}
39
-
40
-docker_build:
41
- docker build . -t matplotlibcpp
Dockerfile renamed to contrib/Dockerfile
contrib/Makefile
@@ -0,0 +1,6 @@
1
+all: docker_build
2
+
+docker_build:
+ cd .. && \
+ docker build . -f contrib/Dockerfile -t matplotlibcpp && \
+ cd contrib
0 commit comments