File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed
Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,13 @@ Everything in [jupyter/scipy-notebook](https://jupyter-docker-stacks.readthedocs
88
99jupysql to run SQL in Jupyter/IPython via a %sql and %%sql magics.
1010
11- python-lsp-ruff a linter plugin for pylsp based on ruff.
11+ PostgreSQL is a relational database management system emphasizing extensibility and SQL compliance.
12+
13+ SQLite is the most used relational database management system in the world.
14+
15+ DuckDB is a column-oriented relational database management system.
16+
17+ Redis is the most used NoSQL database.
1218
1319## Credits
1420
Original file line number Diff line number Diff line change 11# Copyright (c) SIPist Development Team
22# Distributed under the terms of the Modified BSD License.
3- FROM quay.io/jupyter/scipy-notebook:2024-12-09
3+ FROM quay.io/jupyter/scipy-notebook:2024-12-23
44
55LABEL maintainer=
"Flavio Martins <[email protected] >" 6+ ARG NB_BUILD=0
67
78# Fix: https://github.com/hadolint/hadolint/wiki/DL4006
89# Fix: https://github.com/koalaman/shellcheck/wiki/SC3014
@@ -23,7 +24,8 @@ RUN apt-get update --yes && \
2324 postgresql-client-15 \
2425 postgresql-client-16 \
2526 postgresql-client-17 \
26- pspg && \
27+ pspg \
28+ pgloader && \
2729 apt-get clean && rm -rf /var/lib/apt/lists/*
2830
2931USER ${NB_UID}
You can’t perform that action at this time.
0 commit comments