Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 823de00

Browse files
Gjacquenotlava
authored andcommitted
🔧 Moved all elements related to docker build in contrib
As requested by maintainer
1 parent a7c38ad commit 823de00

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ dist: trusty
33
services:
44
- docker
55
script:
6-
- make docker_build
6+
- make -C contrib docker_build

Makefile

-3
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,3 @@ $(EXAMPLE_TARGETS): examples/build/%: examples/%.cpp matplotlibcpp.h
3636

3737
clean:
3838
rm -f ${EXAMPLE_TARGETS}
39-
40-
docker_build:
41-
docker build . -t matplotlibcpp
File renamed without changes.

contrib/Makefile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
all: docker_build
2+
3+
docker_build:
4+
cd .. && \
5+
docker build . -f contrib/Dockerfile -t matplotlibcpp && \
6+
cd contrib

0 commit comments

Comments
 (0)