1
0
Fork 0

basic jupyter setup with docker compose

This commit is contained in:
Massaki Archambault 2024-08-28 22:26:25 -04:00
parent 2beb9bcdf5
commit 19f838597e
4 changed files with 13 additions and 0 deletions

3
Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM quay.io/jupyter/base-notebook
COPY requirements.txt /requirements.txt
RUN pip install --no-cache-dir -r /requirements.txt

7
docker-compose.yaml Normal file
View File

@ -0,0 +1,7 @@
services:
jupyter-notebook:
build: .
ports:
- 8888:8888
volumes:
- ./work:/home/jovyan/work

3
requirements.txt Normal file
View File

@ -0,0 +1,3 @@
jupyter-lsp
jupyterlab-lsp
python-lsp-server[all]

0
work/.keep Normal file
View File