basic jupyter setup with docker compose
This commit is contained in:
parent
2beb9bcdf5
commit
2338a4bf00
|
@ -0,0 +1,3 @@
|
|||
FROM quay.io/jupyter/base-notebook
|
||||
COPY requirements.txt /requirements.txt
|
||||
RUN pip install --no-cache-dir -r /requirements.txt
|
|
@ -0,0 +1,7 @@
|
|||
services:
|
||||
jupyter-notebook:
|
||||
build: .
|
||||
ports:
|
||||
- 8888:8888
|
||||
volumes:
|
||||
- ./work:/home/jovyan/work
|
|
@ -0,0 +1,6 @@
|
|||
jupyter-lsp
|
||||
jupyterlab-lsp
|
||||
python-lsp-server[all]
|
||||
|
||||
matplotlib
|
||||
pandas
|
Loading…
Reference in New Issue