Compare commits

..

No commits in common. "master" and "lab-4.x" have entirely different histories.

3 changed files with 15 additions and 49 deletions

View File

@ -1,15 +1,15 @@
when:
branch: lab-4.x
steps: steps:
build_and_release: build_and_release:
image: maltegrosse/woodpecker-buildah:0.0.12 image: woodpeckerci/plugin-kaniko:1.1.1
pull: true
settings: settings:
registry: git.sandbox.iuk.hdm-stuttgart.de registry: git.sandbox.iuk.hdm-stuttgart.de
repository: grosse/jupyterlab-datascience repo: grosse/jupyterhub-datascience
tag: 4.0.12f tags: 4.0.12
architectures: amd64 aarch64 dockerfile: Dockerfile
context: Dockerfile
imagename: jupyterlab-datascience
username: username:
from_secret: docker_username from_secret: docker_username
password: password:
from_secret: docker_password from_secret: docker_password

View File

@ -1,29 +1,10 @@
ARG LAB_IMAGE=quay.io/jupyter/scipy-notebook:lab-4.0.12 ARG LAB_IMAGE=quay.io/jupyter/scipy-notebook:lab-4.0.12
ARG NB_USER="jovyan"
ARG NB_UID="1000"
ARG NB_GID="100"
FROM ${LAB_IMAGE} FROM ${LAB_IMAGE}
# kaniko issue https://github.com/GoogleContainerTools/kaniko/issues/1087 RUN echo "install custom extensions"
SHELL ["/bin/bash", "-o", "pipefail", "-c"] #RUN python3 -m pip install --upgrade pip setuptools wheel
USER root RUN pip install --extra-index-url https://git.sandbox.iuk.hdm-stuttgart.de/api/packages/grosse/pypi/simple jupyterlab-sandbox-theme
RUN apt-get update --yes && \ #RUN pip install --extra-index-url https://git.sandbox.iuk.hdm-stuttgart.de/api/packages/grosse/pypi/simple jupyterlab-data-pool
apt-get install --yes --no-install-recommends \ #RUN pip install --extra-index-url https://git.sandbox.iuk.hdm-stuttgart.de/api/packages/grosse/pypi/simple jupyterlab-training
git-lfs #RUN pip install --extra-index-url https://git.sandbox.iuk.hdm-stuttgart.de/api/packages/grosse/pypi/simple jupyterlab-synthetic-data
# Install pgrok RUN pip install ipywebrtc==0.6.0 opencv-python-headless==4.9.0.80 voila==0.5.5
RUN export url="https://github.com/pgrok/pgrok/releases/download/v1.4.1/pgrok_1.4.1_linux_"; \
if [ `uname -m` == "aarch64" ]; then \
export arch='arm64' \
&& wget --quiet ${url}${arch}.tar.gz -O pgrok_linux_${arch}.tar.gz ; \
else \
export arch='amd64' \
&& wget --quiet ${url}${arch}.tar.gz -O pgrok_linux_${arch}.tar.gz ; \
fi \
&& tar -xzf pgrok_linux_${arch}.tar.gz \
&& mv pgrok /usr/local/bin/pgrok
USER ${NB_UID}
RUN echo "install custom extensions "
RUN pip install --extra-index-url https://git.sandbox.iuk.hdm-stuttgart.de/api/packages/grosse/pypi/simple jupyterlab-sandbox-theme==0.1.6
RUN pip install --extra-index-url https://git.sandbox.iuk.hdm-stuttgart.de/api/packages/grosse/pypi/simple jupyterlab-sandbox-announcement==0.1.6
RUN pip install ipywebrtc==0.6.0 opencv-python-headless==4.9.0.80 voila==0.5.5 jupyterlab_rise==0.42.0
RUN jupyter labextension disable "@jupyterlab/apputils-extension:announcements"

View File

@ -1,15 +0,0 @@
steps:
build_and_release:
image: taywee/woodpecker-buildah:amd64
#image: maltegrosse/plugin-kaniko:latest
pull: true
settings:
registry: git.sandbox.iuk.hdm-stuttgart.de
repo: grosse/jupyterlab-datascience
cache: false
tag: git.sandbox.iuk.hdm-stuttgart.de/grosse/jupyterlab-datascience:4.0.12b
context: Dockerfile
username:
from_secret: docker_username
password:
from_secret: docker_password