File tree 4 files changed +32
-0
lines changed
4 files changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ WORKDIR /main
2
+
3
+ # install requirements
4
+ COPY requirements-docker.txt .
Original file line number Diff line number Diff line change
1
+ # # variables
2
+ image_name = docker_notebook_template
3
+ container_workdir = /main
4
+ tag = latest
5
+ port = 1112
6
+
7
+ # # build the container
8
+ build :
9
+ docker build -t $(image_name ) :$(tag ) .
10
+
11
+ # # run container on port
12
+ run :
13
+ docker run --rm -ti -v $(shell pwd) :$(container_workdir ) -p $(port ) :8888 $(image_name ) :$(tag )
14
+
15
+ # build and run
16
+ all : build run
Original file line number Diff line number Diff line change
1
+ prompt-toolkit==2.0.1
2
+ jupyter
3
+ jupyter-client==5.2.3
4
+ jupyter-console==5.2.0
5
+ jupyter-contrib-core==0.3.3
6
+ jupyter-contrib-nbextensions==0.5.0
7
+ jupyter-core==4.4.0
8
+ jupyter-highlight-selected-word==0.1.1
9
+ jupyter-latex-envs==1.4.4
10
+ jupyter-nbextensions-configurator==0.4.0
11
+ jupyterlab
Original file line number Diff line number Diff line change
1
+ pandas == 0.22.0
You can’t perform that action at this time.
0 commit comments