commit cebfadf643017a5b8f26e9f3e0127d3c7327b225 Author: maltegrosse Date: Mon Jan 23 13:47:54 2023 +0100 init diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..182521f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +ARG LAB_IMAGE=jupyter/datascience-notebook:lab-3.5.2 + +FROM ${LAB_IMAGE} +RUN pip install --extra-index-url https://git.sandbox.iuk.hdm-stuttgart.de/api/packages/grosse/pypi/simple jupyterlab-sandbox-theme +RUN mkdir -p ~/.jupyterlab/user-settings/@jupyterlab/apputils-extension/ && \ + echo '{ "theme":"Sandbox" }' > themes.jupyterlab-settings \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..ed10410 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# Jupyterlab Datasciene Container diff --git a/woodpecker.yml b/woodpecker.yml new file mode 100644 index 0000000..83dc886 --- /dev/null +++ b/woodpecker.yml @@ -0,0 +1,10 @@ +pipeline: + publish-container: + image: woodpeckerci/plugin-docker-buildx + secrets: [ docker_username, docker_password ] + group: docker + settings: + registry: https://git.sandbox.iuk.hdm-stuttgart.de + repo: git.sandbox.iuk.hdm-stuttgart.de/grosse/jupyterlab-datascience + dockerfile: Dockerfile + tags: latest \ No newline at end of file