File tree Expand file tree Collapse file tree 3 files changed +202
-207
lines changed Expand file tree Collapse file tree 3 files changed +202
-207
lines changed Original file line number Diff line number Diff line change 1- REPO := amancevice/pandas
1+ REPO := amancevice/pandas
22STAGES := lock alpine slim jupyter latest
33PANDAS_VERSION := $(shell grep pandas Pipfile | grep -o '[0-9.]\+')
44
55.PHONY : default clean clobber push
66
7- default : Pipfile.lock $(STAGES )
7+ default : $(STAGES )
88
99.docker :
1010 mkdir -p $@
1111
1212.docker/lock : Pipfile
13- .docker/alpine : .docker/lock
13+ .docker/alpine : .docker/lock Pipfile.lock
1414.docker/slim : .docker/alpine
1515.docker/jupyter : .docker/slim
1616.docker/latest : .docker/jupyter
1717.docker/% : | .docker
18- docker build \
19- --iidfile $@ \
20- --tag $(REPO ) :$* \
21- --target $* \
22- .
18+ docker build --iidfile $@ --tag $(REPO ) :$* --target $* .
2319
2420Pipfile.lock : .docker/lock
2521 docker run --rm --entrypoint cat $$(cat $< ) $@ > $@
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ jupyter = "*"
88matplotlib = " *"
99
1010[packages ]
11- pandas = " ==1.0.3 "
11+ pandas = " ==1.0.5 "
1212
1313[requires ]
1414python_version = " 3.7"
You can’t perform that action at this time.
0 commit comments