From 8d37b898476b6396b411c9bcf3602d9711b7e9bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20J=2E=20Salmer=C3=B3n-Garc=C3=ADa?= Date: Fri, 9 Apr 2021 11:06:59 +0200 Subject: [PATCH 001/436] Initial commit --- .../.github/ISSUE_TEMPLATE.md | 60 +++++++++++++++++++ .../.github/PULL_REQUEST_TEMPLATE.md | 32 ++++++++++ .../jupyter-base-notebook/.github/stale.yml | 36 +++++++++++ bitnami/jupyter-base-notebook/LICENSE | 13 ++++ 4 files changed, 141 insertions(+) create mode 100644 bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE.md create mode 100644 bitnami/jupyter-base-notebook/.github/PULL_REQUEST_TEMPLATE.md create mode 100644 bitnami/jupyter-base-notebook/.github/stale.yml create mode 100644 bitnami/jupyter-base-notebook/LICENSE diff --git a/bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE.md b/bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE.md new file mode 100644 index 000000000000..da2b4da33fde --- /dev/null +++ b/bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,60 @@ + + +**Description** + + + +**Steps to reproduce the issue:** + +1. [First Step] +2. [Second Step] +3. [and so on...] + +**Describe the results you received:** + + + +**Describe the results you expected:** + + + +**Additional information you deem important (e.g. issue happens only occasionally):** + + + +**Version** + +- Output of `docker version`: + +``` +(paste your output here) +``` + +- Output of `docker info`: + +``` +(paste your output here) +``` + +- Output of `docker-compose version` (if applicable): + +``` +(paste your output here) +``` + +**Additional environment details (AWS, VirtualBox, Docker for MAC, physical, etc.):** diff --git a/bitnami/jupyter-base-notebook/.github/PULL_REQUEST_TEMPLATE.md b/bitnami/jupyter-base-notebook/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000000..c2acbe6e0d70 --- /dev/null +++ b/bitnami/jupyter-base-notebook/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,32 @@ + + +**Description of the change** + + + +**Benefits** + + + +**Possible drawbacks** + + + +**Applicable issues** + + + +**Additional information** + + diff --git a/bitnami/jupyter-base-notebook/.github/stale.yml b/bitnami/jupyter-base-notebook/.github/stale.yml new file mode 100644 index 000000000000..ea65d3277a62 --- /dev/null +++ b/bitnami/jupyter-base-notebook/.github/stale.yml @@ -0,0 +1,36 @@ +# Configuration for probot-stale - https://github.com/probot/stale + +# Number of days of inactivity before an Issue or Pull Request becomes stale +daysUntilStale: 15 + +# Number of days of inactivity before a stale Issue or Pull Request is closed. +daysUntilClose: 5 + +# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable +exemptLabels: + - on-hold + +# Label to use when marking as stale +staleLabel: stale + +issues: + # Comment to post when marking as stale. Set to `false` to disable + markComment: > + This Issue has been automatically marked as "stale" because it has not had recent activity (for 15 days). It will be closed if no further activity occurs. Thanks for the feedback. + + # Comment to post when closing a stale Issue or Pull Request. + closeComment: > + Due to the lack of activity in the last 5 days since it was marked as "stale", we proceed to close this Issue. Do not hesitate to reopen it later if necessary. + +pulls: + # Comment to post when marking as stale. Set to `false` to disable + markComment: > + This Pull Request has been automatically marked as "stale" because it has not had recent activity (for 15 days). It will be closed if no further activity occurs. Thank you for your contribution. + + # Comment to post when closing a stale Issue or Pull Request. + closeComment: > + Due to the lack of activity in the last 5 days since it was marked as "stale", we proceed to close this Pull Request. Do not hesitate to reopen it later if necessary. + +# Limit the number of actions per hour, from 1-30. Default is 30 +limitPerRun: 30 + diff --git a/bitnami/jupyter-base-notebook/LICENSE b/bitnami/jupyter-base-notebook/LICENSE new file mode 100644 index 000000000000..c850fde34074 --- /dev/null +++ b/bitnami/jupyter-base-notebook/LICENSE @@ -0,0 +1,13 @@ +Copyright (c) 2015-2021 Bitnami + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. From 32db0e976e5798075116ca67e317067c220a6b73 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 9 Apr 2021 15:57:35 +0000 Subject: [PATCH 002/436] 1.3.0-debian-10-r0 release --- .../1/debian-10/Dockerfile | 29 ++++++ .../1/debian-10/docker-compose.yml | 7 ++ .../opt/bitnami/.bitnami_components.json | 16 +++ .../opt/bitnami/licenses/licenses.txt | 3 + .../prebuildfs/usr/sbin/install_packages | 24 +++++ bitnami/jupyter-base-notebook/README.md | 98 +++++++++++++++++++ .../jupyter-base-notebook/docker-compose.yml | 7 ++ 7 files changed, 184 insertions(+) create mode 100644 bitnami/jupyter-base-notebook/1/debian-10/Dockerfile create mode 100644 bitnami/jupyter-base-notebook/1/debian-10/docker-compose.yml create mode 100644 bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json create mode 100644 bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/licenses/licenses.txt create mode 100755 bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/usr/sbin/install_packages create mode 100644 bitnami/jupyter-base-notebook/README.md create mode 100644 bitnami/jupyter-base-notebook/docker-compose.yml diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile new file mode 100644 index 000000000000..66d00721cfc9 --- /dev/null +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -0,0 +1,29 @@ +FROM docker.io/bitnami/minideb:buster +LABEL maintainer "Bitnami " + +ENV HOME="/opt/bitnami/jupyterhub-singleuser/" \ + OS_ARCH="amd64" \ + OS_FLAVOUR="debian-10" \ + OS_NAME="linux" + +COPY prebuildfs / +# Install required system packages and dependencies +RUN install_packages ca-certificates curl gzip libc6 libgcc1 libstdc++6 procps tar wget +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz && \ + echo "35d4fd9e2c401689d9880a5cd2fb8e099202320a70f025d5f93ca5b800e45d26 /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.3.0-0-linux-amd64-debian-10.tar.gz && \ + echo "6c48982835cea0dd885f6e909ee4ff4627b64cf001b2d433f17026af7c7b1119 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.3.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.3.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.3.0-0-linux-amd64-debian-10.tar.gz +RUN chmod g+rwX /opt/bitnami +RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ + +ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r0" \ + PATH="/opt/bitnami/miniconda/bin:$PATH" + +USER 1001 +ENTRYPOINT [ "tini", "-g", "--" ] +CMD [ "jupyterhub-singlesuser" ] diff --git a/bitnami/jupyter-base-notebook/1/debian-10/docker-compose.yml b/bitnami/jupyter-base-notebook/1/debian-10/docker-compose.yml new file mode 100644 index 000000000000..c43ec5db2bcc --- /dev/null +++ b/bitnami/jupyter-base-notebook/1/debian-10/docker-compose.yml @@ -0,0 +1,7 @@ +version: '2' +services: + jupyter-base-notebook: + image: docker.io/bitnami/jupyter-base-notebook:1 + command: ["tail", "-f", "/dev/null"] + ports: + - 8888:8888 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json new file mode 100644 index 000000000000..ea49829deda0 --- /dev/null +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -0,0 +1,16 @@ +{ + "jupyter-base-notebook": { + "arch": "amd64", + "digest": "6c48982835cea0dd885f6e909ee4ff4627b64cf001b2d433f17026af7c7b1119", + "distro": "debian-10", + "type": "NAMI", + "version": "1.3.0-0" + }, + "miniconda": { + "arch": "amd64", + "digest": "35d4fd9e2c401689d9880a5cd2fb8e099202320a70f025d5f93ca5b800e45d26", + "distro": "debian-10", + "type": "NAMI", + "version": "4.9.2-0" + } +} \ No newline at end of file diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/licenses/licenses.txt b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/licenses/licenses.txt new file mode 100644 index 000000000000..c76ba31f3b8a --- /dev/null +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/licenses/licenses.txt @@ -0,0 +1,3 @@ +Bitnami containers ship with software bundles. You can find the licenses under: +/opt/bitnami/nami/COPYING +/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/usr/sbin/install_packages b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/usr/sbin/install_packages new file mode 100755 index 000000000000..c9577647443b --- /dev/null +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/usr/sbin/install_packages @@ -0,0 +1,24 @@ +#!/bin/sh +set -e +set -u +export DEBIAN_FRONTEND=noninteractive +n=0 +max=2 +until [ $n -gt $max ]; do + set +e + ( + apt-get update -qq && + apt-get install -y --no-install-recommends "$@" + ) + CODE=$? + set -e + if [ $CODE -eq 0 ]; then + break + fi + if [ $n -eq $max ]; then + exit $CODE + fi + echo "apt failed, retrying" + n=$(($n + 1)) +done +rm -r /var/lib/apt/lists /var/cache/apt/archives diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md new file mode 100644 index 000000000000..94bb95038a62 --- /dev/null +++ b/bitnami/jupyter-base-notebook/README.md @@ -0,0 +1,98 @@ +# What is JupyterHub Single User Base? + +> JupyterHub Single User is an instance of Jupyter Notebook. The Base flavor is based on the `base-notebook` version of Jupyter Notebook. + +[Overview of JupyterHub Single User Base](https://github.com/jupyter/docker-stacks) + +# TL;DR + +```console +$ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest +``` + +# Why use Bitnami Images? + +* Bitnami closely tracks upstream source changes and promptly publishes new versions of this image using our automated systems. +* With Bitnami images the latest bug fixes and features are available as soon as possible. +* Bitnami containers, virtual machines and cloud images use the same components and configuration approach - making it easy to switch between formats based on your project needs. +* All our images are based on [minideb](https://github.com/bitnami/minideb) a minimalist Debian based container image which gives you a small base container image and the familiarity of a leading Linux distribution. +* All Bitnami images available in Docker Hub are signed with [Docker Content Trust (DCT)](https://docs.docker.com/engine/security/trust/content_trust/). You can use `DOCKER_CONTENT_TRUST=1` to verify the integrity of the images. +* Bitnami container images are released daily with the latest distribution packages available. + + +> This [CVE scan report](https://quay.io/repository/bitnami/jupyter-base-notebook?tab=tags) contains a security report with all open CVEs. To get the list of actionable security issues, find the "latest" tag, click the vulnerability report link under the corresponding "Security scan" field and then select the "Only show fixable" filter on the next page. + +# Supported tags and respective `Dockerfile` links + +Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). + + +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r0/1/debian-10/Dockerfile) + +Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). + +# Get this image + +The recommended way to get the Bitnami jupyter-base-notebook Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/jupyter-base-notebook). + +```console +$ docker pull bitnami/jupyter-base-notebook:latest +``` + +To use a specific version, you can pull a versioned tag. You can view the [list of available versions](https://hub.docker.com/r/bitnami/jupyter-base-notebook/tags/) in the Docker Hub Registry. + +```console +$ docker pull bitnami/jupyter-base-notebook:[TAG] +``` + +If you wish, you can also build the image yourself. + +```console +$ docker build -t bitnami/jupyter-base-notebook:latest 'https://github.com/bitnami/bitnami-docker-jupyter-base-notebook.git#master:1/debian-10' +``` + +# Why use a non-root container? + +Non-root container images add an extra layer of security and are generally recommended for production environments. However, because they run as a non-root user, privileged tasks are typically off-limits. Learn more about non-root containers [in our docs](https://docs.bitnami.com/tutorials/work-with-non-root-containers/). + +# Configuration + +## Running commands + +To run commands inside this container you can use `docker run`, for example to execute `jupyterhub-singleuser --version` you can follow the example below: + +```console +$ docker run --rm --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest -- jupyterhub-singleuser --version +``` + +Check the [official Jupyter Notebook documentation](https://jupyter.readthedocs.io/en/latest/running.html) for a list of the available parameters. + +# Contributing + +We'd love for you to contribute to this container. You can request new features by creating an [issue](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/issues), or submit a [pull request](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/pulls) with your contribution. + +# Issues + +If you encountered a problem running this container, you can file an [issue](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/issues/new). For us to provide better support, be sure to include the following information in your issue: + +- Host OS and version +- Docker version (`docker version`) +- Output of `docker info` +- Version of this container +- The command you used to run the container, and any relevant output you saw (masking any sensitive information) + +# License + +Copyright 2021 Bitnami + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/bitnami/jupyter-base-notebook/docker-compose.yml b/bitnami/jupyter-base-notebook/docker-compose.yml new file mode 100644 index 000000000000..c43ec5db2bcc --- /dev/null +++ b/bitnami/jupyter-base-notebook/docker-compose.yml @@ -0,0 +1,7 @@ +version: '2' +services: + jupyter-base-notebook: + image: docker.io/bitnami/jupyter-base-notebook:1 + command: ["tail", "-f", "/dev/null"] + ports: + - 8888:8888 From fd69baf06204620541d9ed73593df51e58b09c1d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 10 Apr 2021 16:07:54 +0000 Subject: [PATCH 003/436] 1.3.0-debian-10-r1 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 66d00721cfc9..6068050aff2e 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r1" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 94bb95038a62..58a1d99a1a3e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r0/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r1`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r1/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 24f25a733851401d690192c0cefce412ff92391d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 11 Apr 2021 16:16:47 +0000 Subject: [PATCH 004/436] 1.3.0-debian-10-r2 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 6068050aff2e..0de42084a435 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r2" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 58a1d99a1a3e..ade24de5d7a0 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r1`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r1/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r2`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r2/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 2dea0f6d82b75568aebd2cb393cbe78e6eec57e1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 12 Apr 2021 16:28:06 +0000 Subject: [PATCH 005/436] 1.3.0-debian-10-r3 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 0de42084a435..096e7a385bf5 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r3" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index ade24de5d7a0..51558f96c990 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r2`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r2/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r3`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r3/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From eb0dd7e4f63d49533dc1da14521254049a290c05 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 13 Apr 2021 16:39:14 +0000 Subject: [PATCH 006/436] 1.3.0-debian-10-r4 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 096e7a385bf5..7aeaefb6a1b1 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r4" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 51558f96c990..dba32fff3b99 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r3`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r3/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r4`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r4/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 4848edfac26ad69850e0f9c50a66eb2a5ebc80ba Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 14 Apr 2021 07:59:58 +0000 Subject: [PATCH 007/436] 1.3.0-debian-10-r5 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 7aeaefb6a1b1..db8e004fc96d 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -13,15 +13,15 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "35d4fd9e2c401689d9880a5cd2fb8e099202320a70f025d5f93ca5b800e45d26 /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.3.0-0-linux-amd64-debian-10.tar.gz && \ - echo "6c48982835cea0dd885f6e909ee4ff4627b64cf001b2d433f17026af7c7b1119 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.3.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.3.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.3.0-0-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.3.0-1-linux-amd64-debian-10.tar.gz && \ + echo "c3ce7f486bc8e6720284241fbfe654cafc4078ce47566d7a8f7541cf141240d7 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.3.0-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.3.0-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.3.0-1-linux-amd64-debian-10.tar.gz RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r5" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index ea49829deda0..eecc91935d9f 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "6c48982835cea0dd885f6e909ee4ff4627b64cf001b2d433f17026af7c7b1119", + "digest": "c3ce7f486bc8e6720284241fbfe654cafc4078ce47566d7a8f7541cf141240d7", "distro": "debian-10", "type": "NAMI", - "version": "1.3.0-0" + "version": "1.3.0-1" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index dba32fff3b99..01e3ac96a8b7 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r4`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r4/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r5`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r5/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 0fdd9ad36c3c7d92518f8abd94d16794f3fe92e6 Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Hernandez Date: Thu, 15 Apr 2021 07:22:04 +0000 Subject: [PATCH 008/436] Add stale GH action to this repository (removing previous method) --- .../jupyter-base-notebook/.github/stale.yml | 36 ------------------- .../.github/workflows/stale.yml | 20 +++++++++++ 2 files changed, 20 insertions(+), 36 deletions(-) delete mode 100644 bitnami/jupyter-base-notebook/.github/stale.yml create mode 100644 bitnami/jupyter-base-notebook/.github/workflows/stale.yml diff --git a/bitnami/jupyter-base-notebook/.github/stale.yml b/bitnami/jupyter-base-notebook/.github/stale.yml deleted file mode 100644 index ea65d3277a62..000000000000 --- a/bitnami/jupyter-base-notebook/.github/stale.yml +++ /dev/null @@ -1,36 +0,0 @@ -# Configuration for probot-stale - https://github.com/probot/stale - -# Number of days of inactivity before an Issue or Pull Request becomes stale -daysUntilStale: 15 - -# Number of days of inactivity before a stale Issue or Pull Request is closed. -daysUntilClose: 5 - -# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable -exemptLabels: - - on-hold - -# Label to use when marking as stale -staleLabel: stale - -issues: - # Comment to post when marking as stale. Set to `false` to disable - markComment: > - This Issue has been automatically marked as "stale" because it has not had recent activity (for 15 days). It will be closed if no further activity occurs. Thanks for the feedback. - - # Comment to post when closing a stale Issue or Pull Request. - closeComment: > - Due to the lack of activity in the last 5 days since it was marked as "stale", we proceed to close this Issue. Do not hesitate to reopen it later if necessary. - -pulls: - # Comment to post when marking as stale. Set to `false` to disable - markComment: > - This Pull Request has been automatically marked as "stale" because it has not had recent activity (for 15 days). It will be closed if no further activity occurs. Thank you for your contribution. - - # Comment to post when closing a stale Issue or Pull Request. - closeComment: > - Due to the lack of activity in the last 5 days since it was marked as "stale", we proceed to close this Pull Request. Do not hesitate to reopen it later if necessary. - -# Limit the number of actions per hour, from 1-30. Default is 30 -limitPerRun: 30 - diff --git a/bitnami/jupyter-base-notebook/.github/workflows/stale.yml b/bitnami/jupyter-base-notebook/.github/workflows/stale.yml new file mode 100644 index 000000000000..0bf90080c817 --- /dev/null +++ b/bitnami/jupyter-base-notebook/.github/workflows/stale.yml @@ -0,0 +1,20 @@ +name: 'Close stale issues and PRs' +on: + schedule: + - cron: '0 1 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v3 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: 'This Issue has been automatically marked as "stale" because it has not had recent activity (for 15 days). It will be closed if no further activity occurs. Thanks for the feedback.' + stale-pr-message: 'This Pull Request has been automatically marked as "stale" because it has not had recent activity (for 15 days). It will be closed if no further activity occurs. Thank you for your contribution.' + close-issue-message: 'Due to the lack of activity in the last 5 days since it was marked as "stale", we proceed to close this Issue. Do not hesitate to reopen it later if necessary.' + close-pr-message: 'Due to the lack of activity in the last 5 days since it was marked as "stale", we proceed to close this Pull Request. Do not hesitate to reopen it later if necessary.' + days-before-stale: 15 + days-before-close: 5 + exempt-issue-labels: 'on-hold' + exempt-pr-labels: 'on-hold' From 4d213a421c632e1c1fbc855b92139c4eeba2727a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 15 Apr 2021 08:11:32 +0000 Subject: [PATCH 009/436] 1.3.0-debian-10-r6 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index db8e004fc96d..cb2a1799b3b0 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r6" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 01e3ac96a8b7..a06be2fef981 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r5`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r5/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r6`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r6/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 8e0c74ba72cc5078e2b5d81a75203543644be5d9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 16 Apr 2021 08:33:01 +0000 Subject: [PATCH 010/436] 1.3.0-debian-10-r7 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index cb2a1799b3b0..e06c4f49c698 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r7" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index a06be2fef981..9d159916e463 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r6`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r6/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r7`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r7/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 87a0f5f91c77a3ad01bce305f0f87bd0ab047ffb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 17 Apr 2021 08:43:28 +0000 Subject: [PATCH 011/436] 1.3.0-debian-10-r8 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index e06c4f49c698..c627a4665edf 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r8" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 9d159916e463..92313d1a2a99 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r7`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r7/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r8`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r8/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 642247385a091ec504db3203a5f428d9358cc82d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 18 Apr 2021 09:36:11 +0000 Subject: [PATCH 012/436] 1.3.0-debian-10-r9 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index c627a4665edf..ecd80e70a0be 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r9" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 92313d1a2a99..b1786cd50098 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r8`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r8/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r9`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r9/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From dcc944a002878222c66d515a29a556546454242c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 19 Apr 2021 09:46:03 +0000 Subject: [PATCH 013/436] 1.3.0-debian-10-r10 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index ecd80e70a0be..1446f1c695dd 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r10" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index b1786cd50098..54213c3a0c43 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r9`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r9/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r10`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r10/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 7c305aa818aeaeca769743d6b9d9f3c5e55c2de3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 20 Apr 2021 11:53:35 +0000 Subject: [PATCH 014/436] 1.3.0-debian-10-r11 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 1446f1c695dd..e48d8691770f 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -13,15 +13,15 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "35d4fd9e2c401689d9880a5cd2fb8e099202320a70f025d5f93ca5b800e45d26 /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.3.0-1-linux-amd64-debian-10.tar.gz && \ - echo "c3ce7f486bc8e6720284241fbfe654cafc4078ce47566d7a8f7541cf141240d7 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.3.0-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.3.0-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.3.0-1-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.3.0-2-linux-amd64-debian-10.tar.gz && \ + echo "10bf94afd726425f77564d4c8aac9dee2432eced4ddafb68b0f54a9da00057bc /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.3.0-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.3.0-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.3.0-2-linux-amd64-debian-10.tar.gz RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r11" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index eecc91935d9f..2ebcabd64618 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "c3ce7f486bc8e6720284241fbfe654cafc4078ce47566d7a8f7541cf141240d7", + "digest": "10bf94afd726425f77564d4c8aac9dee2432eced4ddafb68b0f54a9da00057bc", "distro": "debian-10", "type": "NAMI", - "version": "1.3.0-1" + "version": "1.3.0-2" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 54213c3a0c43..aacb8f5c135d 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r10`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r10/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r11`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r11/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From be7e9808b336b63c4f3ec7573d4688d7ea5395c5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 21 Apr 2021 12:10:48 +0000 Subject: [PATCH 015/436] 1.3.0-debian-10-r12 release --- .../jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 16 +++++++++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index e48d8691770f..f3e47ee7b16d 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r12" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index aacb8f5c135d..e18529fe1a50 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r11`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r11/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r12`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r12/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). @@ -67,6 +67,20 @@ $ docker run --rm --name jupyter-base-notebook bitnami/jupyter-base-notebook:lat Check the [official Jupyter Notebook documentation](https://jupyter.readthedocs.io/en/latest/running.html) for a list of the available parameters. +## Adding more python packages + +To add more python packages, you need to create a Dockerfile extending the current image, and the commands to install the desired packages. +In the following example, the base notebook image is used to add `scipy` and `matplotlib`. + +``` +FROM bitnami/jupyter-base-notebook:latest + +RUN conda install --quiet --yes \ + 'matplotlib-base' \ + 'scipy' && \ + conda clean --all -f -y +``` + # Contributing We'd love for you to contribute to this container. You can request new features by creating an [issue](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/issues), or submit a [pull request](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/pulls) with your contribution. From 47207e5419a6ef43aceb73219ddfcb75fc9e6043 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 22 Apr 2021 12:21:33 +0000 Subject: [PATCH 016/436] 1.3.0-debian-10-r13 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index f3e47ee7b16d..d829a5c64901 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r13" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index e18529fe1a50..029cf86c2297 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r12`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r12/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r13`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r13/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From ef4d66f024045cb0fcec9d34e030167daea4d495 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 23 Apr 2021 13:12:59 +0000 Subject: [PATCH 017/436] 1.3.0-debian-10-r14 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index d829a5c64901..0fddb2e59f90 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r14" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 029cf86c2297..61a3bdad972b 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r13`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r13/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r14`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r14/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 03208946d5765452d9cdfde5b6615220e2ab209a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 24 Apr 2021 13:25:53 +0000 Subject: [PATCH 018/436] 1.3.0-debian-10-r15 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 0fddb2e59f90..8000e1dba3a7 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r15" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 61a3bdad972b..00e89b9d710b 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r14`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r14/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r15`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r15/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 80469087f2c7d20ff2992e192640f17d666cf155 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 26 Apr 2021 18:56:07 +0000 Subject: [PATCH 019/436] 1.3.0-debian-10-r16 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 8000e1dba3a7..297fef079778 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r16" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 00e89b9d710b..df1a610a8989 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r15`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r15/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r16`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r16/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f82d7568b9af4deb25dabcfb499ad3b23c2e9bec Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 28 Apr 2021 05:21:57 +0000 Subject: [PATCH 020/436] 1.3.0-debian-10-r17 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 297fef079778..7ddbe795527e 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r17" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index df1a610a8989..793b7ac2d2b3 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r16`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r16/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r17`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r17/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 90b22726d5c0f1cdfacf764e5a57424f89e302fe Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 29 Apr 2021 05:31:24 +0000 Subject: [PATCH 021/436] 1.3.0-debian-10-r18 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 7ddbe795527e..75b8446fab8d 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r18" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 793b7ac2d2b3..764ef3c3fc5b 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r17`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r17/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r18`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r18/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 2af5a46f3d50b4383861cb90374337a997ee76b3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 30 Apr 2021 05:41:54 +0000 Subject: [PATCH 022/436] 1.3.0-debian-10-r19 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 75b8446fab8d..0a87e92e9268 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r19" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 764ef3c3fc5b..18d3ab69bdde 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r18`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r18/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r19`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r19/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f9701409cf509c3148361423b4c9ea1a34bf54a8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 1 May 2021 06:01:10 +0000 Subject: [PATCH 023/436] 1.3.0-debian-10-r20 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 0a87e92e9268..7dbc5bdcd6a5 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r20" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 18d3ab69bdde..8228b8bcd87f 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r19`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r19/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r20`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r20/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 05a9d61b5cfecca3685ce66b086b92c58109420a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 2 May 2021 06:15:58 +0000 Subject: [PATCH 024/436] 1.3.0-debian-10-r21 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 7dbc5bdcd6a5..63bdcda723a5 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r20" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r21" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 8228b8bcd87f..28eec9c0bfe3 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r20`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r20/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r21`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r21/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 5dabe89ec730f1af7b66913a16775e76cc5e0ece Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 3 May 2021 06:26:01 +0000 Subject: [PATCH 025/436] 1.3.0-debian-10-r22 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 63bdcda723a5..408d096cc39d 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r21" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r22" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 28eec9c0bfe3..c59f969cd7f5 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r21`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r21/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r22`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r22/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 98a5e0d1ee1da11e85dfb3829dba47e20ab0bef8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 4 May 2021 06:38:34 +0000 Subject: [PATCH 026/436] 1.3.0-debian-10-r23 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 408d096cc39d..5ff9184c87ad 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r22" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r23" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index c59f969cd7f5..262b9ec88d8c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r22`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r22/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r23`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r23/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 6effa73f4b8e730c677c2635df95a9588e7a7235 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 4 May 2021 16:23:09 +0000 Subject: [PATCH 027/436] 1.4.0-debian-10-r0 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 5ff9184c87ad..7360d274c2a7 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -13,15 +13,15 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "35d4fd9e2c401689d9880a5cd2fb8e099202320a70f025d5f93ca5b800e45d26 /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.3.0-2-linux-amd64-debian-10.tar.gz && \ - echo "10bf94afd726425f77564d4c8aac9dee2432eced4ddafb68b0f54a9da00057bc /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.3.0-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.3.0-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.3.0-2-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.4.0-0-linux-amd64-debian-10.tar.gz && \ + echo "49ef17a49a9b21a1236c461a94ccaff6e89605b44db1415881fd6b74b39ff72e /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.0-0-linux-amd64-debian-10.tar.gz RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-10-r23" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r0" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 2ebcabd64618..4a86e8c3a52f 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "10bf94afd726425f77564d4c8aac9dee2432eced4ddafb68b0f54a9da00057bc", + "digest": "49ef17a49a9b21a1236c461a94ccaff6e89605b44db1415881fd6b74b39ff72e", "distro": "debian-10", "type": "NAMI", - "version": "1.3.0-2" + "version": "1.4.0-0" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 262b9ec88d8c..75c855a4451c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.3.0`, `1.3.0-debian-10-r23`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.3.0-debian-10-r23/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r0/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 884dd45a9a248926a0820f2ca7b92803b56d2a3a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 5 May 2021 16:35:59 +0000 Subject: [PATCH 028/436] 1.4.0-debian-10-r1 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 7360d274c2a7..a19320fee8be 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r1" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 75c855a4451c..ceb87abf2888 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r0/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r1`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r1/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 2514cdb0160bf2aec0bc933a2024a4daaf022e90 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 7 May 2021 21:21:35 +0000 Subject: [PATCH 029/436] 1.4.0-debian-10-r2 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index a19320fee8be..5130a9e0976e 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r2" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index ceb87abf2888..a02898c1cc5b 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r1`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r1/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r2`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r2/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 389b37058a4b342bc2e9755e700f2a9d01185c20 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 8 May 2021 22:12:55 +0000 Subject: [PATCH 030/436] 1.4.0-debian-10-r3 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 5130a9e0976e..acb8190342ce 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r3" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index a02898c1cc5b..a7f0dcf85e13 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r2`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r2/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r3`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r3/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 21e4615f3b28c7459aee2827b438dbcdbc1d0b89 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 9 May 2021 23:20:19 +0000 Subject: [PATCH 031/436] 1.4.0-debian-10-r4 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index acb8190342ce..e181d92cf791 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r4" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index a7f0dcf85e13..1cfcef09348e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r3`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r3/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r4`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r4/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 4cf114e99cd1d55418ecf2dc229264ba7cf6a713 Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Hernandez Date: Mon, 10 May 2021 12:00:21 +0000 Subject: [PATCH 032/436] Add CODE_OF_CONDUCT and CONTRIBUTING to this repository --- .../jupyter-base-notebook/CODE_OF_CONDUCT.md | 17 ++++++++++++ bitnami/jupyter-base-notebook/CONTRIBUTING.md | 27 +++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 bitnami/jupyter-base-notebook/CODE_OF_CONDUCT.md create mode 100644 bitnami/jupyter-base-notebook/CONTRIBUTING.md diff --git a/bitnami/jupyter-base-notebook/CODE_OF_CONDUCT.md b/bitnami/jupyter-base-notebook/CODE_OF_CONDUCT.md new file mode 100644 index 000000000000..48beb02e0808 --- /dev/null +++ b/bitnami/jupyter-base-notebook/CODE_OF_CONDUCT.md @@ -0,0 +1,17 @@ +# Contributor Code of Conduct + +As contributors and maintainers of this project, we pledge to respect everyone who contributes by posting issues, updating documentation, submitting pull requests, providing feedback in comments, and any other activities. + +Communication through any of Bitnami's channels (GitHub, mailing lists, Twitter, and so on) must be constructive and never resort to personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct. + +We promise to extend courtesy and respect to everyone involved in this project, regardless of gender, gender identity, sexual orientation, disability, age, race, ethnicity, religion, or level of experience. We expect anyone contributing to this project to do the same. + +If any member of the community violates this code of conduct, the maintainers of this project may take action, including removing issues, comments, and PRs or blocking accounts, as deemed appropriate. + +If you are subjected to or witness unacceptable behavior, or have any other concerns, please communicate with us. + +If you have suggestions to improve this Code of Conduct, please submit an issue or PR. + +**Attribution** + +This Code of Conduct is adapted from the Angular project available at this page: https://github.com/angular/code-of-conduct/blob/master/CODE_OF_CONDUCT.md diff --git a/bitnami/jupyter-base-notebook/CONTRIBUTING.md b/bitnami/jupyter-base-notebook/CONTRIBUTING.md new file mode 100644 index 000000000000..b4270435b0c6 --- /dev/null +++ b/bitnami/jupyter-base-notebook/CONTRIBUTING.md @@ -0,0 +1,27 @@ +# Contributing Guidelines + +Contributions are welcome via GitHub Pull Requests. This document outlines the process to help get your contribution accepted. + +Any type of contribution is welcome: new features, bug fixes, documentation improvements, etc. + +## How to Contribute + +1. Fork this repository, develop, and test your changes. +2. Submit a pull request. + +### Requirements + +When submitting a PR make sure that: +- It must pass CI jobs for linting and test the changes (if any). +- It must follow [container best practices](https://engineering.bitnami.com/articles/best-practices-writing-a-dockerfile.html). +- The title of the PR is clear enough. +- If necessary, add information to the repository's `README.md`. + +### PR Approval and Release Process + +1. Changes are manually reviewed by Bitnami team members usually within a business day. +2. Once the changes are accepted, the PR is tested (if needed) into the Bitnami CI pipeline, the container is deployed and tested (verification and functional tests) using docker-compose and Helm (if there is an associated Helm Chart). +3. The PR is merged by the reviewer(s) in the GitHub `master` branch. +4. Then our CI/CD system is going to push the container image to the different registries including the recently merged changes. + +***NOTE***: Please note that, in terms of time, may be a slight difference between the appearance of the code in GitHub and the image with the changes in the different registries. From c3a0c7e9065dedaf26cc8602f58eca5e9d1e1b6e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 10 May 2021 23:31:01 +0000 Subject: [PATCH 033/436] 1.4.0-debian-10-r5 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index e181d92cf791..fcf80405da19 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r5" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 1cfcef09348e..98b74505f247 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r4`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r4/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r5`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r5/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 431cd393c4e9162529ce0404a0a1bad533215ee3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 11 May 2021 23:44:04 +0000 Subject: [PATCH 034/436] 1.4.0-debian-10-r6 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index fcf80405da19..02eb36c18da8 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r6" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 98b74505f247..4dbc341f7e1f 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r5`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r5/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r6`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r6/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 634ed250856cba4692788c1e0dacf5f240551191 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 12 May 2021 18:28:23 +0000 Subject: [PATCH 035/436] 1.4.0-debian-10-r7 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 02eb36c18da8..e89f3c2ca97f 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -13,15 +13,15 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "35d4fd9e2c401689d9880a5cd2fb8e099202320a70f025d5f93ca5b800e45d26 /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.4.0-0-linux-amd64-debian-10.tar.gz && \ - echo "49ef17a49a9b21a1236c461a94ccaff6e89605b44db1415881fd6b74b39ff72e /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.0-0-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.4.0-1-linux-amd64-debian-10.tar.gz && \ + echo "d76a710f4981e847c7a4608e1c1c55e74bb33b12739f52aaa4a17c742c094cb4 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.0-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.0-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.0-1-linux-amd64-debian-10.tar.gz RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r7" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 4a86e8c3a52f..e29260616bc9 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "49ef17a49a9b21a1236c461a94ccaff6e89605b44db1415881fd6b74b39ff72e", + "digest": "d76a710f4981e847c7a4608e1c1c55e74bb33b12739f52aaa4a17c742c094cb4", "distro": "debian-10", "type": "NAMI", - "version": "1.4.0-0" + "version": "1.4.0-1" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 4dbc341f7e1f..94296cf8123b 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r6`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r6/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r7`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r7/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 578a86fa2e61dad3ec9f3577eddb75ce3563bb6f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 13 May 2021 18:59:32 +0000 Subject: [PATCH 036/436] 1.4.0-debian-10-r8 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index e89f3c2ca97f..c65d45a99608 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r8" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 94296cf8123b..bf957249ea63 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r7`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r7/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r8`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r8/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 326ff9c9e417e5a40fb3695f7e2954b5cbfe3c9e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 14 May 2021 19:51:24 +0000 Subject: [PATCH 037/436] 1.4.0-debian-10-r9 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index c65d45a99608..4f2541d06c61 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r9" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index bf957249ea63..e72cf83903ae 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r8`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r8/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r9`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r9/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From fae998a5e55b59e941002ddbd08a5ca1c182a524 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 15 May 2021 20:02:21 +0000 Subject: [PATCH 038/436] 1.4.0-debian-10-r10 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 4f2541d06c61..a0f7cc3bf245 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r10" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index e72cf83903ae..2f539c058a66 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r9`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r9/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r10`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r10/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From e64247a4450678edc8c0f02b07c4ba83478f8513 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 16 May 2021 20:13:35 +0000 Subject: [PATCH 039/436] 1.4.0-debian-10-r11 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index a0f7cc3bf245..fadf7ba8bf59 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r11" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 2f539c058a66..ec94471a1dd8 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r10`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r10/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r11`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r11/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 5b699217272ea6a8040874bb342ab8cae254fc35 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 17 May 2021 18:40:07 +0000 Subject: [PATCH 040/436] 1.4.1-debian-10-r0 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index fadf7ba8bf59..a3285e16c4dd 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -13,15 +13,15 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "35d4fd9e2c401689d9880a5cd2fb8e099202320a70f025d5f93ca5b800e45d26 /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.4.0-1-linux-amd64-debian-10.tar.gz && \ - echo "d76a710f4981e847c7a4608e1c1c55e74bb33b12739f52aaa4a17c742c094cb4 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.0-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.0-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.0-1-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.4.1-0-linux-amd64-debian-10.tar.gz && \ + echo "fae19517c70863865cbde78d28decdcca1ab6f26a05b6c102e338cd584417dd1 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.1-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.1-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.1-0-linux-amd64-debian-10.tar.gz RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r0" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index e29260616bc9..88b7503185f1 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "d76a710f4981e847c7a4608e1c1c55e74bb33b12739f52aaa4a17c742c094cb4", + "digest": "fae19517c70863865cbde78d28decdcca1ab6f26a05b6c102e338cd584417dd1", "distro": "debian-10", "type": "NAMI", - "version": "1.4.0-1" + "version": "1.4.1-0" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index ec94471a1dd8..a11d8577633f 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.0`, `1.4.0-debian-10-r11`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.0-debian-10-r11/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r0/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From d1939a94f93eecb7354c726fe3459c4031a479b2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 18 May 2021 19:00:05 +0000 Subject: [PATCH 041/436] 1.4.1-debian-10-r1 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index a3285e16c4dd..91a9992cad36 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r1" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index a11d8577633f..d6d447ae1bbf 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r0/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r1`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r1/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From fea4ffb09da09d0da03c4d029dd5675699a410cb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 19 May 2021 19:32:53 +0000 Subject: [PATCH 042/436] 1.4.1-debian-10-r2 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 91a9992cad36..e4d7d6dac725 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r2" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index d6d447ae1bbf..2c61e7c0b5ef 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r1`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r1/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r2`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r2/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 8e7228351f197ed11578a1ca70eea39c9e583e6a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 20 May 2021 19:43:55 +0000 Subject: [PATCH 043/436] 1.4.1-debian-10-r3 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index e4d7d6dac725..ee4948a17166 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r3" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 2c61e7c0b5ef..52996dfcbeea 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r2`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r2/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r3`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r3/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From b71a7850dfe6d1b54302c24b5562a5ca5256d869 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 22 May 2021 07:14:57 +0000 Subject: [PATCH 044/436] 1.4.1-debian-10-r4 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index ee4948a17166..3d41b51df850 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r4" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 52996dfcbeea..527980c64100 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r3`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r3/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r4`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r4/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 6e68496781299bd7dc5b53629c93ec3034ef3f12 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 23 May 2021 07:28:59 +0000 Subject: [PATCH 045/436] 1.4.1-debian-10-r5 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 3d41b51df850..6c7b27e7f940 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r5" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 527980c64100..cbc533dab3c1 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r4`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r4/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r5`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r5/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 0b885169826abc752723777d1e13fbddd07bcd4d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 24 May 2021 07:57:35 +0000 Subject: [PATCH 046/436] 1.4.1-debian-10-r6 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 6c7b27e7f940..fdb2fa7b438f 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r6" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index cbc533dab3c1..9445f09f399c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r5`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r5/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r6`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r6/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 40a44477c58174bd54e511d90293b33cb25d6c97 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 25 May 2021 08:31:36 +0000 Subject: [PATCH 047/436] 1.4.1-debian-10-r7 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index fdb2fa7b438f..9fc28148a227 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r7" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 9445f09f399c..fe31b40e9ee9 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r6`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r6/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r7`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r7/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 22c4d8dda1ccc279ada079f934474587cbf27dcb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 26 May 2021 08:56:35 +0000 Subject: [PATCH 048/436] 1.4.1-debian-10-r8 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 9fc28148a227..a3130dfb4d7d 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r8" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index fe31b40e9ee9..25889918555e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r7`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r7/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r8`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r8/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From b501e579064b2da004b9ab3715a45fc9c565fc28 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 27 May 2021 09:06:45 +0000 Subject: [PATCH 049/436] 1.4.1-debian-10-r9 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index a3130dfb4d7d..0ecbdb02a198 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r9" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 25889918555e..85388f83f5ba 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r8`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r8/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r9`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r9/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From acd9dbf11ec790c50583d0cfeb2129489dc1e6bc Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 28 May 2021 09:23:26 +0000 Subject: [PATCH 050/436] 1.4.1-debian-10-r10 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 0ecbdb02a198..9b00c460c858 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r10" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 85388f83f5ba..31ccbf51373e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r9`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r9/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r10`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r10/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f908d9548af9a848f4c22b520fb76dca23772374 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 29 May 2021 09:32:50 +0000 Subject: [PATCH 051/436] 1.4.1-debian-10-r11 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 9b00c460c858..0f456c888d07 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r11" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 31ccbf51373e..c3901cd8e67e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r10`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r10/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r11`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r11/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 53815b3dc71e84af37f2cb24d5a46e5bc054b2ec Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 30 May 2021 09:42:29 +0000 Subject: [PATCH 052/436] 1.4.1-debian-10-r12 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 0f456c888d07..bf37254bf87e 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r12" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index c3901cd8e67e..63ea724efba4 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r11`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r11/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r12`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r12/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 6277ef23128dd153320b6e5ac50168d1aae1f093 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 31 May 2021 09:52:03 +0000 Subject: [PATCH 053/436] 1.4.1-debian-10-r13 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index bf37254bf87e..0868acc9425a 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r13" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 63ea724efba4..440ca0625ba4 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r12`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r12/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r13`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r13/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 6ff90932fcc3dd1072de81de53f43b311870a0b9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 1 Jun 2021 10:09:25 +0000 Subject: [PATCH 054/436] 1.4.1-debian-10-r14 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 0868acc9425a..025a59f75a93 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r14" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 440ca0625ba4..59b8f5f5f0e8 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r13`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r13/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r14`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r14/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 4321cf7aa0951656c2565100396ee82d777cfe0c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 2 Jun 2021 13:14:28 +0000 Subject: [PATCH 055/436] 1.4.1-debian-10-r15 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 025a59f75a93..01e804268075 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r15" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 59b8f5f5f0e8..cc5abc1d5f59 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r14`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r14/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r15`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r15/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 88a024fc14a9bc815a0de5d227fca9168f45bf60 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 4 Jun 2021 00:59:39 +0000 Subject: [PATCH 056/436] 1.4.1-debian-10-r16 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 01e804268075..7c777ea04162 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r16" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index cc5abc1d5f59..7f46bd16a96f 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r15`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r15/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r16`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r16/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 2602e290b2eb0e8e473e133d54c050c7fa8337bb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 5 Jun 2021 01:38:53 +0000 Subject: [PATCH 057/436] 1.4.1-debian-10-r17 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 7c777ea04162..7253c7ca5ace 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r17" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 7f46bd16a96f..3cad916b1dba 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r16`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r16/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r17`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r17/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 0ce4fe6521061f129414c5eb6d24f6414640bc73 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 8 Jun 2021 05:50:29 +0000 Subject: [PATCH 058/436] 1.4.1-debian-10-r18 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 7253c7ca5ace..b954c1047b0b 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r18" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 3cad916b1dba..dac1d8bc48df 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r17`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r17/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r18`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r18/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f1efe2b7c3a51864c1de9297de2f5acc807843c3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 9 Jun 2021 11:20:49 +0000 Subject: [PATCH 059/436] 1.4.1-debian-10-r19 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index b954c1047b0b..c07aab6b05d0 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r19" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index dac1d8bc48df..f69ef1a10b9d 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r18`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r18/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r19`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r19/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 3d44d1708f897493934e9bc9db7206adf3726c36 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 12 Jun 2021 19:56:22 +0000 Subject: [PATCH 060/436] 1.4.1-debian-10-r21 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index c07aab6b05d0..892cfbaaef7a 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r21" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f69ef1a10b9d..924b520d1f10 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r19`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r19/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r21`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r21/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 87f3de46d9b9744bb2098f495a52cf2de30f9d69 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 13 Jun 2021 20:20:45 +0000 Subject: [PATCH 061/436] 1.4.1-debian-10-r22 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 892cfbaaef7a..0cdbcc7dc21f 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r21" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r22" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 924b520d1f10..caa231a4ff24 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r21`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r21/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r22`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r22/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From d3f8000964ccb6f8701604073ba67e952a649c93 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 14 Jun 2021 20:53:34 +0000 Subject: [PATCH 062/436] 1.4.1-debian-10-r23 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 0cdbcc7dc21f..415e22d1ab3d 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r22" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r23" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index caa231a4ff24..0a5c32b8241a 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r22`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r22/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r23`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r23/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f0c15beeb8d408ffb82f0084415805f29f566043 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 15 Jun 2021 21:23:42 +0000 Subject: [PATCH 063/436] 1.4.1-debian-10-r24 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 415e22d1ab3d..4159fc58f53f 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r23" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r24" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 0a5c32b8241a..d30e2f18f5ed 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r23`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r23/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r24`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r24/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 66b29003d6f4311b533d0ee2f7dd999dbddf6de3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 6 Jul 2021 12:21:15 +0000 Subject: [PATCH 064/436] 1.4.1-debian-10-r57 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 4159fc58f53f..ed164dfdefbc 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r24" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r57" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index d30e2f18f5ed..b2d85685e2a3 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r24`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r24/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r57`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r57/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 397a63f666391f0c182b45a725691e2a86abf0cb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 7 Jul 2021 18:42:07 +0000 Subject: [PATCH 065/436] 1.4.1-debian-10-r58 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index ed164dfdefbc..42a67a855b04 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r57" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r58" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index b2d85685e2a3..f8c1f1f50897 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r57`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r57/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r58`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r58/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 1d0c780b794576edafebe58e5ec101014b3a3902 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 8 Jul 2021 19:05:09 +0000 Subject: [PATCH 066/436] 1.4.1-debian-10-r59 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 42a67a855b04..b0bf690fb055 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r58" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r59" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f8c1f1f50897..5a2bf801e3a6 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r58`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r58/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r59`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r59/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From bf96eaf9e0ec76fda9c5dff7871d57057cd25b8a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 9 Jul 2021 19:28:46 +0000 Subject: [PATCH 067/436] 1.4.1-debian-10-r60 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index b0bf690fb055..c02c401d1794 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r59" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r60" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 5a2bf801e3a6..002f2b48a7e9 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r59`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r59/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r60`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r60/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 93ab704375008e91867d7a2e19d0769e531ef309 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 11 Jul 2021 05:42:28 +0000 Subject: [PATCH 068/436] 1.4.1-debian-10-r61 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index c02c401d1794..9aae84a7e103 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r60" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r61" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 002f2b48a7e9..67668339bc58 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r60`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r60/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r61`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r61/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 259accd81110fc027ecfe0a84b0acde1e6a0aea9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 12 Jul 2021 06:11:05 +0000 Subject: [PATCH 069/436] 1.4.1-debian-10-r62 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 9aae84a7e103..750796e12a78 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r61" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r62" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 67668339bc58..b53329fb3bd3 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r61`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r61/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r62`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r62/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 45c8b8616b1065e2a983b9e81c2c771ff3a6c65e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 13 Jul 2021 07:30:56 +0000 Subject: [PATCH 070/436] 1.4.1-debian-10-r63 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 750796e12a78..03b43d41c789 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r62" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r63" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index b53329fb3bd3..b6ed4d2256f1 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r62`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r62/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r63`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r63/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 00b8b01f9ca49f860826452a597904c17a55f7c6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 14 Jul 2021 16:10:09 +0000 Subject: [PATCH 071/436] 1.4.1-debian-10-r64 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 03b43d41c789..901e14ee5fac 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r63" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r64" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index b6ed4d2256f1..aad31b8cb4ac 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r63`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r63/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r64`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r64/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f16780a2405ee4775de21f63cae6e827d864eaef Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 15 Jul 2021 16:39:26 +0000 Subject: [PATCH 072/436] 1.4.1-debian-10-r65 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 901e14ee5fac..2f95833c64d2 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r64" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r65" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index aad31b8cb4ac..810973a1bb28 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r64`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r64/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r65`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r65/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 2f2fab564c522ffffbc9d2dbde4435b7d6e40747 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 16 Jul 2021 17:06:49 +0000 Subject: [PATCH 073/436] 1.4.1-debian-10-r66 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 2f95833c64d2..0c6cedf9f4d6 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r65" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r66" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 810973a1bb28..9d58ee06b670 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r65`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r65/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r66`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r66/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 95a5d30c29e41cf7b3b58c1b601040f70b208ea4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 17 Jul 2021 17:30:16 +0000 Subject: [PATCH 074/436] 1.4.1-debian-10-r67 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 0c6cedf9f4d6..4745a01cfc99 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r66" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r67" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 9d58ee06b670..f819fc29639a 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r66`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r66/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r67`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r67/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From ea7129dc0907583219729e19606367ac0285890f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 18 Jul 2021 17:57:12 +0000 Subject: [PATCH 075/436] 1.4.1-debian-10-r68 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 4745a01cfc99..a4f32ec09f00 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r67" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r68" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f819fc29639a..630252b859d3 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r67`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r67/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r68`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r68/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From a4c06451bf9cf08794a417ae2a5a770d106375ca Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 19 Jul 2021 18:23:35 +0000 Subject: [PATCH 076/436] 1.4.1-debian-10-r69 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index a4f32ec09f00..1298771361aa 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r68" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r69" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 630252b859d3..20aa22402d49 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r68`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r68/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r69`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r69/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 02207e76ee7f07f05837879e704cd1807c58187d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 20 Jul 2021 18:49:48 +0000 Subject: [PATCH 077/436] 1.4.1-debian-10-r70 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 1298771361aa..af5e2ad240a2 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r69" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r70" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 20aa22402d49..063f513e7811 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r69`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r69/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r70`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r70/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 31927f52b10323edd1d94bcf1325be4659c9d001 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 22 Jul 2021 05:07:46 +0000 Subject: [PATCH 078/436] 1.4.1-debian-10-r71 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index af5e2ad240a2..e34ef0c26955 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -9,10 +9,10 @@ ENV HOME="/opt/bitnami/jupyterhub-singleuser/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl gzip libc6 libgcc1 libstdc++6 procps tar wget -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz && \ - echo "35d4fd9e2c401689d9880a5cd2fb8e099202320a70f025d5f93ca5b800e45d26 /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/miniconda-4.9.2-0-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz && \ + echo "54517d6ea3a8f4d8f619db061b0c056aaafb6cf308ad0fe2c4357f41c007ec61 /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.4.1-0-linux-amd64-debian-10.tar.gz && \ echo "fae19517c70863865cbde78d28decdcca1ab6f26a05b6c102e338cd584417dd1 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.1-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.1-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r70" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r71" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 88b7503185f1..5b3d62f3af20 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "miniconda": { "arch": "amd64", - "digest": "35d4fd9e2c401689d9880a5cd2fb8e099202320a70f025d5f93ca5b800e45d26", + "digest": "54517d6ea3a8f4d8f619db061b0c056aaafb6cf308ad0fe2c4357f41c007ec61", "distro": "debian-10", "type": "NAMI", - "version": "4.9.2-0" + "version": "4.10.3-0" } } \ No newline at end of file diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 063f513e7811..c548e795d37f 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r70`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r70/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r71`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r71/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 2b60e894cc70a7f6be7e5a6ceabca353ecdc3a3e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 23 Jul 2021 05:32:33 +0000 Subject: [PATCH 079/436] 1.4.1-debian-10-r72 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index e34ef0c26955..9d8ebe6c69f2 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r71" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r72" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index c548e795d37f..8d36bcd09071 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r71`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r71/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r72`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r72/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 93bb19494d1180d3fb14b2aebc3b04598e1239d0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 25 Jul 2021 00:06:07 +0000 Subject: [PATCH 080/436] 1.4.1-debian-10-r73 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 9d8ebe6c69f2..902aedd37786 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r72" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r73" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 8d36bcd09071..d31931c564c5 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r72`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r72/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r73`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r73/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 4ec723d3b2cf8c5861e4dca2328b737fe64c1eff Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 26 Jul 2021 00:35:27 +0000 Subject: [PATCH 081/436] 1.4.1-debian-10-r74 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 902aedd37786..06cfd8ed3813 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r73" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r74" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index d31931c564c5..195ba70a8588 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r73`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r73/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r74`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r74/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From d147326b9e5fdaea9887661d9e9deaa99e96bb12 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 28 Jul 2021 00:43:58 +0000 Subject: [PATCH 082/436] 1.4.1-debian-10-r75 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 06cfd8ed3813..e91545d1d9ff 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r74" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r75" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 195ba70a8588..ee09e24ea7a5 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r74`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r74/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r75`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r75/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 1fb590d3077cdf6afbaf68882cfa546cd5253549 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 29 Jul 2021 01:14:18 +0000 Subject: [PATCH 083/436] 1.4.1-debian-10-r76 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index e91545d1d9ff..31c91bb2e08b 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r75" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r76" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index ee09e24ea7a5..c652b803cc01 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r75`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r75/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r76`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r76/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 902eaa0e13ff75aa6b8c95d6a73b6568e3d427f0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 30 Jul 2021 01:40:26 +0000 Subject: [PATCH 084/436] 1.4.1-debian-10-r77 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 31c91bb2e08b..0475c4743098 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r76" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r77" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index c652b803cc01..91f2cc12b31a 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r76`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r76/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r77`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r77/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From d8fac958507e993075811c5b41786b2cd7feb5aa Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 31 Jul 2021 02:06:20 +0000 Subject: [PATCH 085/436] 1.4.1-debian-10-r78 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 0475c4743098..aea4bf5ed14b 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r77" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r78" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 91f2cc12b31a..92e8da00000e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r77`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r77/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r78`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r78/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 791de8be08b7cd6e207a3644a5fd7620fa91fe4a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 1 Aug 2021 02:32:09 +0000 Subject: [PATCH 086/436] 1.4.1-debian-10-r79 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index aea4bf5ed14b..ce2e9357761a 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r78" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r79" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 92e8da00000e..4f50c0de72a3 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r78`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r78/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r79`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r79/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f2dffd3b9cfdfb123e0fab4080ef189097abb368 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 2 Aug 2021 02:56:43 +0000 Subject: [PATCH 087/436] 1.4.1-debian-10-r80 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index ce2e9357761a..3f05348be2ce 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r79" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r80" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 4f50c0de72a3..d4c6c87f7236 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r79`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r79/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r80`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r80/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 2a97cf6a345d2aec5bbf0b011c33d4ddf85f3436 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 3 Aug 2021 03:22:56 +0000 Subject: [PATCH 088/436] 1.4.1-debian-10-r81 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 3f05348be2ce..2ab75d2bac2a 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r80" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r81" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index d4c6c87f7236..35e547f52135 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r80`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r80/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r81`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r81/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 5aad983993fe2578a6682db96a966837719532e2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 4 Aug 2021 03:51:00 +0000 Subject: [PATCH 089/436] 1.4.1-debian-10-r82 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 2ab75d2bac2a..8fd6999153d0 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r81" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r82" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 35e547f52135..ad05aac80d2f 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r81`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r81/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r82`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r82/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 82c26df16b225c720cb9cd5e16bdac1a2f5fad03 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 5 Aug 2021 04:17:36 +0000 Subject: [PATCH 090/436] 1.4.1-debian-10-r83 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 8fd6999153d0..c287b0655e76 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r82" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r83" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index ad05aac80d2f..1508005d1a1a 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r82`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r82/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r83`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r83/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 60d1e95ed0173cb17f312d6f3a79eaa58c63d6e0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 6 Aug 2021 04:45:15 +0000 Subject: [PATCH 091/436] 1.4.1-debian-10-r84 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index c287b0655e76..3a6ac1ee78a6 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r83" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r84" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 1508005d1a1a..1ceba011a06c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r83`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r83/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r84`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r84/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 503704cb9204a19d14c14fc6253269916be40f82 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 7 Aug 2021 05:14:42 +0000 Subject: [PATCH 092/436] 1.4.1-debian-10-r85 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 3a6ac1ee78a6..565bde70bff2 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r84" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r85" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 1ceba011a06c..6192ebb5e0ef 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r84`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r84/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r85`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r85/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From edad9aa1401835f2ed88da17ed450948902839d4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 8 Aug 2021 05:45:46 +0000 Subject: [PATCH 093/436] 1.4.1-debian-10-r86 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 565bde70bff2..d8747a159963 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r85" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r86" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 6192ebb5e0ef..73e58f628939 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r85`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r85/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r86`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r86/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 9c6b1bb3c40ad382de0fcf521b3a69c720658a7a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 8 Aug 2021 20:49:29 +0000 Subject: [PATCH 094/436] 1.4.1-debian-10-r87 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index d8747a159963..53a8565848f4 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -13,15 +13,15 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "54517d6ea3a8f4d8f619db061b0c056aaafb6cf308ad0fe2c4357f41c007ec61 /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.4.1-0-linux-amd64-debian-10.tar.gz && \ - echo "fae19517c70863865cbde78d28decdcca1ab6f26a05b6c102e338cd584417dd1 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.1-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.1-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.1-0-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.4.1-1-linux-amd64-debian-10.tar.gz && \ + echo "b27b08780e29e952b47094e5387a0ca19fb3e0e9538c0f7df04c41fcf6833211 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.1-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.1-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.1-1-linux-amd64-debian-10.tar.gz RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r86" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r87" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 5b3d62f3af20..4351662c3ca1 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "fae19517c70863865cbde78d28decdcca1ab6f26a05b6c102e338cd584417dd1", + "digest": "b27b08780e29e952b47094e5387a0ca19fb3e0e9538c0f7df04c41fcf6833211", "distro": "debian-10", "type": "NAMI", - "version": "1.4.1-0" + "version": "1.4.1-1" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 73e58f628939..2107bc0c12ad 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r86`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r86/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r87`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r87/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 0a80135c5b67f9eb1858cb8ccb0bbcc237251a3e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 9 Aug 2021 21:44:17 +0000 Subject: [PATCH 095/436] 1.4.1-debian-10-r88 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 53a8565848f4..60a789495fbb 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r87" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r88" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 2107bc0c12ad..9c065ae9da9e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r87`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r87/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r88`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r88/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 17a81ae54b25ab6ff60b4473cc3b547f435011ee Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 10 Aug 2021 23:58:28 +0000 Subject: [PATCH 096/436] 1.4.1-debian-10-r89 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 60a789495fbb..a15cb727dbeb 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r88" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r89" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 9c065ae9da9e..69771f03a306 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r88`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r88/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r89`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r89/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 6a303e4c359bcff46df9f5c0fc10f51ae7c9172d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 12 Aug 2021 00:56:19 +0000 Subject: [PATCH 097/436] 1.4.1-debian-10-r90 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index a15cb727dbeb..944865a02150 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r89" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r90" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 69771f03a306..1a83530fa059 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r89`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r89/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r90`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r90/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 3a8bbf1d0a504e87dd17ad1baf12d66eb0031161 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 13 Aug 2021 01:51:37 +0000 Subject: [PATCH 098/436] 1.4.1-debian-10-r91 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 944865a02150..677fd7542af5 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r90" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r91" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 1a83530fa059..eca27ea26f28 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r90`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r90/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r91`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r91/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 5d572980b28b92690d81d7bd1639b9dd0c4c9211 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 14 Aug 2021 02:45:25 +0000 Subject: [PATCH 099/436] 1.4.1-debian-10-r92 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 677fd7542af5..013ddd033d8a 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r91" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r92" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index eca27ea26f28..7f0413273f6c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r91`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r91/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r92`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r92/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 6870b5c3a88f2c36706608742db8ae5c6c2cfdf0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 15 Aug 2021 03:42:37 +0000 Subject: [PATCH 100/436] 1.4.1-debian-10-r93 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 013ddd033d8a..fbf09df7684a 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r92" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r93" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 7f0413273f6c..7d992e2dbec3 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r92`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r92/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r93`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r93/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 81cd0886ca3438cea4ab6ebdf402d9150f3ecc14 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 16 Aug 2021 04:39:04 +0000 Subject: [PATCH 101/436] 1.4.1-debian-10-r94 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index fbf09df7684a..498b9a740dfc 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r93" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r94" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 7d992e2dbec3..75160cf068d9 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r93`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r93/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r94`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r94/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 7d99fb04e5076802dd2f9d05c3c8c4b25c30da04 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 17 Aug 2021 05:39:07 +0000 Subject: [PATCH 102/436] 1.4.1-debian-10-r95 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 498b9a740dfc..7b91b42e6e4d 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r94" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r95" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 75160cf068d9..7c92ade5ccee 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r94`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r94/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r95`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r95/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From b66078eedead3938cb567f15ed870964db7a6628 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 18 Aug 2021 06:33:48 +0000 Subject: [PATCH 103/436] 1.4.1-debian-10-r96 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 7b91b42e6e4d..f39ae4a38782 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r95" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r96" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 7c92ade5ccee..2719be0803ec 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r95`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r95/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r96`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r96/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 85be5c27115975ce7bf5759e07dcbdc153836d1f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 19 Aug 2021 10:50:35 +0000 Subject: [PATCH 104/436] 1.4.1-debian-10-r97 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index f39ae4a38782..7bd1e59f3e79 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r96" \ + BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r97" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 2719be0803ec..325e3985b0c1 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r96`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r96/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r97`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r97/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f21592923ffc8bd55ef9b684ebdf86e7e80c9102 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 20 Aug 2021 10:20:14 +0000 Subject: [PATCH 105/436] 1.4.2-debian-10-r0 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 7bd1e59f3e79..c15ffabf9f7f 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -13,15 +13,15 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "54517d6ea3a8f4d8f619db061b0c056aaafb6cf308ad0fe2c4357f41c007ec61 /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.4.1-1-linux-amd64-debian-10.tar.gz && \ - echo "b27b08780e29e952b47094e5387a0ca19fb3e0e9538c0f7df04c41fcf6833211 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.1-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.1-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.1-1-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.4.2-0-linux-amd64-debian-10.tar.gz && \ + echo "916b2018eedfc53b6c8d2ea5406530163856afc9b33138fb6f596948b1f439e5 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.2-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.2-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.2-0-linux-amd64-debian-10.tar.gz RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.1-debian-10-r97" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r0" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 4351662c3ca1..8e402ad8106b 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "b27b08780e29e952b47094e5387a0ca19fb3e0e9538c0f7df04c41fcf6833211", + "digest": "916b2018eedfc53b6c8d2ea5406530163856afc9b33138fb6f596948b1f439e5", "distro": "debian-10", "type": "NAMI", - "version": "1.4.1-1" + "version": "1.4.2-0" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 325e3985b0c1..d25b6226ffc3 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.1`, `1.4.1-debian-10-r97`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.1-debian-10-r97/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r0/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From e632ae2da20519ba210ae58955ec66df1132441a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 21 Aug 2021 11:15:35 +0000 Subject: [PATCH 106/436] 1.4.2-debian-10-r1 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index c15ffabf9f7f..a454f57a947b 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r1" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index d25b6226ffc3..8ac6f6e40c4a 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r0/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r1`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r1/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 500ad665c93ee5332020fbbd955f38c88548fb15 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 22 Aug 2021 12:12:55 +0000 Subject: [PATCH 107/436] 1.4.2-debian-10-r2 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index a454f57a947b..8746402a69f1 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r2" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 8ac6f6e40c4a..8114abdabd67 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r1`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r1/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r2`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r2/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From bb6b345a61af5810ea2defe85c6a0a60e9d92eb2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 23 Aug 2021 13:08:00 +0000 Subject: [PATCH 108/436] 1.4.2-debian-10-r3 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 8746402a69f1..67ff219d31f4 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r3" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 8114abdabd67..6fdddeae84f9 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r2`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r2/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r3`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r3/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 5cf95ba96150e915a925ca8e4f68bdf67c5425d7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 24 Aug 2021 14:06:57 +0000 Subject: [PATCH 109/436] 1.4.2-debian-10-r4 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 67ff219d31f4..49def64fcd31 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r4" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 6fdddeae84f9..aa10e28fff69 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r3`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r3/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r4`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r4/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 8ec6ec33af6388afeb1f1f089b5c16e6044bd6ef Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 25 Aug 2021 15:04:03 +0000 Subject: [PATCH 110/436] 1.4.2-debian-10-r5 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 49def64fcd31..a3d42f79abe8 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r5" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index aa10e28fff69..9f75eef499e4 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r4`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r4/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r5`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r5/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From fbac8f2595b7c3b2df99c8f0d32d84424a525490 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 26 Aug 2021 16:01:44 +0000 Subject: [PATCH 111/436] 1.4.2-debian-10-r6 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index a3d42f79abe8..274e9a9b3430 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r6" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 9f75eef499e4..63e9eada02c4 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r5`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r5/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r6`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r6/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 99ac725d143bf091ec4414b30be1877db3c2c5d6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 27 Aug 2021 16:57:01 +0000 Subject: [PATCH 112/436] 1.4.2-debian-10-r7 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 274e9a9b3430..b8eeab45c0c2 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r7" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 63e9eada02c4..72254c4f4456 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r6`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r6/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r7`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r7/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From bbb7bc430afb02481374fa79833ad749d9dbd082 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 28 Aug 2021 17:51:02 +0000 Subject: [PATCH 113/436] 1.4.2-debian-10-r8 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index b8eeab45c0c2..cbfc3ad70551 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r8" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 72254c4f4456..48b9a0b699be 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r7`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r7/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r8`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r8/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From b788ebb916b1e33e73b9899c285c6aaddcb5b0e3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 29 Aug 2021 18:47:11 +0000 Subject: [PATCH 114/436] 1.4.2-debian-10-r9 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index cbfc3ad70551..d25746ba833a 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r9" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 48b9a0b699be..8595cc3d1ad6 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r8`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r8/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r9`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r9/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From e6ac28f0e3c30625a8ce1129acc69b9deeefe15e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 30 Aug 2021 19:42:16 +0000 Subject: [PATCH 115/436] 1.4.2-debian-10-r10 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index d25746ba833a..bc51e477f374 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r10" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 8595cc3d1ad6..7ad85061a205 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r9`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r9/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r10`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r10/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 7065d46e8c2a0fa8f804ae4cb72c3441d1ffb6e3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 31 Aug 2021 20:46:29 +0000 Subject: [PATCH 116/436] 1.4.2-debian-10-r11 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index bc51e477f374..9229f870bf1a 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r11" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 7ad85061a205..cb92b925446c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r10`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r10/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r11`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r11/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 4d13bfcf0ce0a3deb75794a05b30cde013b1956f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 1 Sep 2021 21:58:33 +0000 Subject: [PATCH 117/436] 1.4.2-debian-10-r12 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 9229f870bf1a..476d88981934 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r12" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index cb92b925446c..cdfa6fda7366 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r11`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r11/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r12`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r12/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 796210bbdd4eb70deeeb4e925f39b2f3d45b380d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 3 Sep 2021 01:20:32 +0000 Subject: [PATCH 118/436] 1.4.2-debian-10-r13 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 476d88981934..00e57d746e42 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r13" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index cdfa6fda7366..f95643204bc8 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r12`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r12/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r13`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r13/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 6601501506db10e28726c40d2937eaac19301b17 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 4 Sep 2021 03:44:21 +0000 Subject: [PATCH 119/436] 1.4.2-debian-10-r14 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 00e57d746e42..71c784da5797 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r14" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f95643204bc8..76a93888841a 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r13`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r13/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r14`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r14/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 836ac4ba2344df1986fa04701e6b2d6d0987ae63 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 5 Sep 2021 04:38:35 +0000 Subject: [PATCH 120/436] 1.4.2-debian-10-r15 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 71c784da5797..9706bcca1ea6 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r15" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 76a93888841a..1a90841daa00 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r14`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r14/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r15`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r15/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 026d1b0c7ee8c02b08943656faaf92983dc9ddd2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 6 Sep 2021 05:34:34 +0000 Subject: [PATCH 121/436] 1.4.2-debian-10-r16 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 9706bcca1ea6..20dfc387affb 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r16" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 1a90841daa00..5d59981ef822 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r15`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r15/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r16`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r16/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 78bde4095b3c0fa275ca41538e815c6333bb810d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 7 Sep 2021 06:29:54 +0000 Subject: [PATCH 122/436] 1.4.2-debian-10-r17 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 20dfc387affb..7543e957fb95 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r17" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 5d59981ef822..fd8d8698a711 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r16`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r16/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r17`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r17/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From bb790037ab4d0a3ab4d3b8d9f870457768fca064 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 8 Sep 2021 07:30:17 +0000 Subject: [PATCH 123/436] 1.4.2-debian-10-r18 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 7543e957fb95..41c3280e5cd0 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r18" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index fd8d8698a711..c29bd77a206b 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r17`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r17/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r18`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r18/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 76316b678b5d89f8dff245c29a36f391a95efa8d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 9 Sep 2021 08:32:05 +0000 Subject: [PATCH 124/436] 1.4.2-debian-10-r19 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 41c3280e5cd0..d5e56962f616 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r19" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index c29bd77a206b..f4fd34b579d3 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r18`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r18/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r19`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r19/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From c3e8a2adaa2d3476e35a30fdc1532928bb07c84e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 10 Sep 2021 09:47:32 +0000 Subject: [PATCH 125/436] 1.4.2-debian-10-r20 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index d5e56962f616..63ff7e9b1a00 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r20" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f4fd34b579d3..e46f7eb626d0 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r19`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r19/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r20`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r20/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From a3a25ec4f9eb1fcff48bceb1460ddebec9bfdc90 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 11 Sep 2021 10:46:03 +0000 Subject: [PATCH 126/436] 1.4.2-debian-10-r21 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 63ff7e9b1a00..8f90cac7b710 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r20" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r21" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index e46f7eb626d0..ba9523d7b461 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r20`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r20/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r21`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r21/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 3d99c1cdc0c477b36f2c267b038a227515657e8d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 12 Sep 2021 11:46:25 +0000 Subject: [PATCH 127/436] 1.4.2-debian-10-r22 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 8f90cac7b710..443e8157d528 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r21" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r22" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index ba9523d7b461..779022f562b0 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r21`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r21/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r22`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r22/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From bc9446858c31c819ac1ea786f39d369628a0cf22 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 13 Sep 2021 12:42:42 +0000 Subject: [PATCH 128/436] 1.4.2-debian-10-r23 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 443e8157d528..2068e6b8bd21 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r22" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r23" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 779022f562b0..59fc402287f4 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r22`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r22/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r23`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r23/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From bf486b6a9f41607e0fb3da84b3686e5f34ce56ba Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 14 Sep 2021 13:39:35 +0000 Subject: [PATCH 129/436] 1.4.2-debian-10-r24 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 2068e6b8bd21..592ea879e461 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r23" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r24" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 59fc402287f4..4b4d5a6cbac8 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r23`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r23/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r24`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r24/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f117babbe3bf9f1376ea472fa54f58150b798563 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 15 Sep 2021 15:11:59 +0000 Subject: [PATCH 130/436] 1.4.2-debian-10-r25 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 592ea879e461..fd31ad5c5b23 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r24" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r25" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 4b4d5a6cbac8..62d975801f37 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r24`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r24/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r25`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r25/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f7aca116ff7c0b75f305d21af502f4f2b70b7934 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 16 Sep 2021 16:39:46 +0000 Subject: [PATCH 131/436] 1.4.2-debian-10-r26 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index fd31ad5c5b23..cab0f28de48e 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r25" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r26" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 62d975801f37..891873151434 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r25`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r25/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r26`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r26/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From d713e7eda96394e474fbd21b33c4d487f441a327 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 17 Sep 2021 17:35:27 +0000 Subject: [PATCH 132/436] 1.4.2-debian-10-r27 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index cab0f28de48e..8edca1447ec7 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r26" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r27" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 891873151434..16cdb95a362b 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r26`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r26/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r27`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r27/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From dfee4ce67b7ee8777083c7265a9abc2fc58f20ba Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 18 Sep 2021 18:33:30 +0000 Subject: [PATCH 133/436] 1.4.2-debian-10-r28 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 8edca1447ec7..dec7c369baaa 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r27" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r28" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 16cdb95a362b..0df5ded1367d 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r27`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r27/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r28`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r28/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 3e315914b3d1f9121e2f37772aac63c9f18dabc2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 19 Sep 2021 19:34:48 +0000 Subject: [PATCH 134/436] 1.4.2-debian-10-r29 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index dec7c369baaa..a800faa5453e 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r28" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r29" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 0df5ded1367d..59f5f093996e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r28`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r28/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r29`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r29/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 1c53bb0fcfa4516af920f3f0a86becf0478854a0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 20 Sep 2021 20:31:46 +0000 Subject: [PATCH 135/436] 1.4.2-debian-10-r30 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index a800faa5453e..07e2dd3cc031 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r29" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r30" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 59f5f093996e..90789771232b 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r29`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r29/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r30`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r30/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 7916e1a1ce4d5cd021d800567a1c6a949ca64ae9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 21 Sep 2021 21:24:59 +0000 Subject: [PATCH 136/436] 1.4.2-debian-10-r31 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 07e2dd3cc031..c541868710c6 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r30" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r31" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 90789771232b..dd6f89a50e0c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r30`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r30/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r31`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r31/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 55e9edbe83b70d3fc7f87ab5f7b79de215c9afb5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 22 Sep 2021 22:22:42 +0000 Subject: [PATCH 137/436] 1.4.2-debian-10-r32 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index c541868710c6..3912608038d4 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r31" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r32" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index dd6f89a50e0c..c053c69220d4 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r31`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r31/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r32`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r32/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 7d5c3abfccf02e9c681cde272b7d67fa719fb2d6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 23 Sep 2021 23:17:42 +0000 Subject: [PATCH 138/436] 1.4.2-debian-10-r33 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 3912608038d4..513e6bbf105b 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r32" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r33" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index c053c69220d4..27bc2369fdf5 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r32`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r32/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r33`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r33/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From b673a70c33c6b25edf3e32ad92df775ee9ab8f38 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 25 Sep 2021 00:13:41 +0000 Subject: [PATCH 139/436] 1.4.2-debian-10-r34 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 513e6bbf105b..9ac1cff8583b 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r33" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r34" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 27bc2369fdf5..762b2a1b3a09 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r33`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r33/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r34`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r34/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From d7eaf4c19a8f2bce8d3d9132ce19e158ad512deb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 26 Sep 2021 01:08:17 +0000 Subject: [PATCH 140/436] 1.4.2-debian-10-r35 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 9ac1cff8583b..d6af70996dd7 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r34" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r35" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 762b2a1b3a09..86484c0d5a16 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r34`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r34/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r35`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r35/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From af905a2a2f733aa7fb69a9e212695b07b2f52279 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 27 Sep 2021 03:27:32 +0000 Subject: [PATCH 141/436] 1.4.2-debian-10-r36 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index d6af70996dd7..5129c6aa74a0 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r35" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r36" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 86484c0d5a16..ddfbcafcccc1 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r35`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r35/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r36`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r36/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 8db4747108512e83c217f46bea6fe621afbc9a9b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 28 Sep 2021 04:20:35 +0000 Subject: [PATCH 142/436] 1.4.2-debian-10-r37 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 5129c6aa74a0..32fd3794b705 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r36" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r37" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index ddfbcafcccc1..4c589787ad10 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r36`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r36/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r37`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r37/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From d51215e705d1e9b134e064d184ad6be90c9ffaf3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 29 Sep 2021 05:13:33 +0000 Subject: [PATCH 143/436] 1.4.2-debian-10-r38 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 32fd3794b705..0f40f0f2a180 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r37" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r38" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 4c589787ad10..be26876ba0ab 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r37`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r37/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r38`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r38/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From c7238ddbbf7cfdeb6439f834a5097992d416fe02 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 30 Sep 2021 06:11:25 +0000 Subject: [PATCH 144/436] 1.4.2-debian-10-r39 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 0f40f0f2a180..e4764910fca5 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r38" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r39" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index be26876ba0ab..6d35c50d640e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r38`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r38/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r39`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r39/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From a779b089b0f04cdf9e6bc2c7573e3f371df00b92 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 1 Oct 2021 07:06:18 +0000 Subject: [PATCH 145/436] 1.4.2-debian-10-r40 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index e4764910fca5..df993b9e6335 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r39" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r40" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 6d35c50d640e..454f8e384de6 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r39`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r39/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r40`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r40/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 0e30befb8f97529c3bbd40c6632d9d5fce22a2fd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 2 Oct 2021 09:23:05 +0000 Subject: [PATCH 146/436] 1.4.2-debian-10-r41 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index df993b9e6335..09a04959ee10 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r40" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r41" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 454f8e384de6..1c47f4d09167 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r40`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r40/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r41`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r41/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From db610554082c4f0ed2257cf262a7d225c153ce25 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 3 Oct 2021 10:16:49 +0000 Subject: [PATCH 147/436] 1.4.2-debian-10-r42 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 09a04959ee10..3573698ba03e 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r41" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r42" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 1c47f4d09167..2244bbe2d092 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r41`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r41/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r42`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r42/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 1cc77fefabd850498e27506743fdfe5da217e49c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 4 Oct 2021 11:17:11 +0000 Subject: [PATCH 148/436] 1.4.2-debian-10-r43 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 3573698ba03e..83a210b53a8c 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r42" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r43" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 2244bbe2d092..1e6292736a55 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r42`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r42/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r43`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r43/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 9c93a045b9f8f569f1ed572e3366af52bb100ea1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 5 Oct 2021 12:15:45 +0000 Subject: [PATCH 149/436] 1.4.2-debian-10-r44 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 83a210b53a8c..e9ab423a2eb9 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r43" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r44" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 1e6292736a55..053308262076 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r43`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r43/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r44`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r44/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From ded08bd0fd2572b32859b5f40c749409a4498e6d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 6 Oct 2021 13:26:00 +0000 Subject: [PATCH 150/436] 1.4.2-debian-10-r45 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index e9ab423a2eb9..cdfe7ee16aa7 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r44" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r45" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 053308262076..01376305acdb 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r44`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r44/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r45`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r45/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From a047fa4801fd5250a3038c1449d731c62e60a60d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 7 Oct 2021 14:20:58 +0000 Subject: [PATCH 151/436] 1.4.2-debian-10-r46 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index cdfe7ee16aa7..5c2cee2bdfb8 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,9 +21,9 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r45" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r46" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 ENTRYPOINT [ "tini", "-g", "--" ] -CMD [ "jupyterhub-singlesuser" ] +CMD [ "jupyterhub-singleuser" ] diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 01376305acdb..6901c3f79bb3 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r45`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r45/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r46`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r46/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 7bc6edfe0661c0989e270647394c5a691196fa2e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 8 Oct 2021 21:56:06 +0000 Subject: [PATCH 152/436] 1.4.2-debian-10-r47 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 5c2cee2bdfb8..210aa98e6f65 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r46" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r47" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 6901c3f79bb3..01592b78e437 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r46`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r46/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r47`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r47/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From c22a13719ba000c3ae9d6c858c8ac9850e5e38c5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 10 Oct 2021 00:13:51 +0000 Subject: [PATCH 153/436] 1.4.2-debian-10-r48 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 210aa98e6f65..4af6981d1e7d 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r47" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r48" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 01592b78e437..07ea182481b3 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r47`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r47/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r48`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r48/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From dc4765d88ff0c563fe38428bb86d54cabc0dd5c2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 11 Oct 2021 03:06:20 +0000 Subject: [PATCH 154/436] 1.4.2-debian-10-r49 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 4af6981d1e7d..250b992cede4 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r48" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r49" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 07ea182481b3..647675afc7a9 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r48`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r48/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r49`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r49/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 637732ca0bdebad7fbd46ea5cc4dd468f730aabe Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 12 Oct 2021 14:28:56 +0000 Subject: [PATCH 155/436] 1.4.2-debian-10-r50 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 250b992cede4..d6c7944f431d 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r49" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r50" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 647675afc7a9..fe604d633bc6 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r49`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r49/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r50`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r50/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From d69a1bf8e90612ac782b5763b3ce4a252c10c0b9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 13 Oct 2021 15:42:37 +0000 Subject: [PATCH 156/436] 1.4.2-debian-10-r51 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index d6c7944f431d..75ea3479a5fc 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r50" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r51" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index fe604d633bc6..05739eee73b0 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r50`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r50/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r51`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r51/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From d4b4d7e692378aa7fe6cd06c418fbe50e27d7ebc Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 14 Oct 2021 16:58:44 +0000 Subject: [PATCH 157/436] 1.4.2-debian-10-r52 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 75ea3479a5fc..f0416af9829b 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r51" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r52" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 05739eee73b0..c148bd88248d 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r51`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r51/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r52`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r52/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From fb13451b133ffc2279f6b89b5fc5d90672eff3e7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 15 Oct 2021 17:53:39 +0000 Subject: [PATCH 158/436] 1.4.2-debian-10-r53 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index f0416af9829b..378c92c7181f 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r52" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r53" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index c148bd88248d..e122643ffb21 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r52`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r52/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r53`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r53/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From b8c094dd60a51f9b6da38004d028d376ba618880 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 16 Oct 2021 18:49:03 +0000 Subject: [PATCH 159/436] 1.4.2-debian-10-r54 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 378c92c7181f..0070f1cc03ba 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r53" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r54" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index e122643ffb21..9c2d41384ff1 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r53`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r53/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r54`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r54/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 2ba60b0f3f74541c99e68bb841b338a91d9c4722 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 17 Oct 2021 19:42:23 +0000 Subject: [PATCH 160/436] 1.4.2-debian-10-r55 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 0070f1cc03ba..0e8833d37348 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r54" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r55" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 9c2d41384ff1..4e4e1d1040c1 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r54`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r54/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r55`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r55/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From b079dadd2e032396c357b71cff30029386330167 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 19 Oct 2021 00:00:05 +0000 Subject: [PATCH 161/436] 1.4.2-debian-10-r56 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 0e8833d37348..44bbede91b41 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r55" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r56" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 4e4e1d1040c1..63dc777cfb21 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r55`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r55/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r56`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r56/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From b483f9ccea42a310cd12234d21719655abecd2c4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 20 Oct 2021 00:43:08 +0000 Subject: [PATCH 162/436] 1.4.2-debian-10-r57 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 44bbede91b41..c92d047bd51b 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r56" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r57" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 63dc777cfb21..8f7079e8d78a 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r56`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r56/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r57`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r57/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 8171efe5b3c3ab9bd4c06470a3f03aeef461b591 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 21 Oct 2021 03:00:29 +0000 Subject: [PATCH 163/436] 1.4.2-debian-10-r58 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index c92d047bd51b..1cd0ea5572b4 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r57" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r58" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 8f7079e8d78a..2a259e0b6367 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r57`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r57/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r58`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r58/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 7955d849d7e852f119a15132e4dea24cf2857dcb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 22 Oct 2021 03:41:01 +0000 Subject: [PATCH 164/436] 1.4.2-debian-10-r59 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 1cd0ea5572b4..4ce6d58c589a 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r58" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r59" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 2a259e0b6367..b34740b65a34 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r58`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r58/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r59`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r59/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 8ab594c1fc12f45e2492c4c555810ed1e40ccdd9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 23 Oct 2021 04:25:47 +0000 Subject: [PATCH 165/436] 1.4.2-debian-10-r60 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 4ce6d58c589a..911bb6482c68 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r59" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r60" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index b34740b65a34..3155c399e42a 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r59`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r59/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r60`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r60/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 07bd2962b603ec5acdb651e749cae18b2d422b82 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 24 Oct 2021 05:10:25 +0000 Subject: [PATCH 166/436] 1.4.2-debian-10-r61 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 911bb6482c68..e0e7e7430f67 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r60" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r61" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 3155c399e42a..bbec11c2f943 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r60`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r60/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r61`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r61/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From d5a3685503a1989a8f844a12ebc98b2f695a7760 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 25 Oct 2021 06:04:09 +0000 Subject: [PATCH 167/436] 1.4.2-debian-10-r62 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index e0e7e7430f67..bb597ae3f634 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r61" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r62" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index bbec11c2f943..acc8acf2344e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r61`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r61/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r62`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r62/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 6c05a1668c884e08eff960a3abbd76fde2504f19 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 26 Oct 2021 06:45:41 +0000 Subject: [PATCH 168/436] 1.4.2-debian-10-r63 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index bb597ae3f634..a54209be6329 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r62" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r63" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index acc8acf2344e..f41de71ab812 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r62`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r62/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r63`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r63/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 4bf15f89e9ebdfc77fe87d3ed4ed05f9a1f9e1ae Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 26 Oct 2021 21:40:35 +0000 Subject: [PATCH 169/436] 1.4.2-debian-10-r64 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index a54209be6329..497f0669ca41 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r63" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r64" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f41de71ab812..b45135584ce8 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r63`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r63/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r64`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r64/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From c4c116fd8afd02db6dfa20116fe2dc5f070bbce2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 27 Oct 2021 22:22:48 +0000 Subject: [PATCH 170/436] 1.4.2-debian-10-r65 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 497f0669ca41..9b13fc780b64 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r64" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r65" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index b45135584ce8..6058ae66652e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r64`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r64/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r65`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r65/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From be6c82f3d1d8d9076fc504b57b35445298d6f300 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 28 Oct 2021 22:44:10 +0000 Subject: [PATCH 171/436] 1.4.2-debian-10-r66 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 9b13fc780b64..c5c918ecf6d7 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r65" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r66" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 6058ae66652e..9a6db017f046 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r65`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r65/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r66`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r66/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 981e077017aa4843df9322b2545889d518fb8f1f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 29 Oct 2021 23:04:50 +0000 Subject: [PATCH 172/436] 1.4.2-debian-10-r67 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index c5c918ecf6d7..adae361a3bec 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r66" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r67" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 9a6db017f046..8e16e5e794a8 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r66`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r66/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r67`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r67/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From fe4c521c1330fa5fd4486c9f63a491f93b12b789 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 30 Oct 2021 23:23:21 +0000 Subject: [PATCH 173/436] 1.4.2-debian-10-r68 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index adae361a3bec..d546417ddeab 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r67" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r68" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 8e16e5e794a8..ffbc47d62487 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r67`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r67/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r68`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r68/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 89a0774c4b8c8fe26738d217d25d91288455615e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 1 Nov 2021 00:51:23 +0000 Subject: [PATCH 174/436] 1.4.2-debian-10-r69 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index d546417ddeab..6e133303c71d 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r68" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r69" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index ffbc47d62487..627c5db908e2 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r68`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r68/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r69`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r69/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 08032574227815cc14ac3a623287a69f88d656c2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 2 Nov 2021 01:17:49 +0000 Subject: [PATCH 175/436] 1.4.2-debian-10-r70 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 6e133303c71d..2324592cd7ef 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r69" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r70" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 627c5db908e2..3bb254611926 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r69`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r69/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r70`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r70/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 63c7a7ecc17cb4a2688676d4c66dcec780e3ce9e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 3 Nov 2021 01:39:41 +0000 Subject: [PATCH 176/436] 1.4.2-debian-10-r71 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 2324592cd7ef..acab50bc5e57 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r70" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r71" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 3bb254611926..ca32f622f753 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r70`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r70/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r71`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r71/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From c6d9c0aea0c63be4aea8038a356503d82f26a290 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 4 Nov 2021 01:59:32 +0000 Subject: [PATCH 177/436] 1.4.2-debian-10-r72 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index acab50bc5e57..05d4c115b80e 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r71" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r72" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index ca32f622f753..023c47d49f9d 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r71`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r71/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r72`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r72/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 284bc7e50a840435a59a239336e43b4d3ea0a464 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 5 Nov 2021 02:20:07 +0000 Subject: [PATCH 178/436] 1.4.2-debian-10-r73 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 05d4c115b80e..933047bbe95b 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r72" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r73" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 023c47d49f9d..ebafa7e0687d 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -27,7 +27,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r72`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r72/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r73`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r73/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From a6cc2531a6128d2fefc96f495f660605481784cf Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 6 Nov 2021 05:27:44 +0000 Subject: [PATCH 179/436] 1.4.2-debian-10-r74 release --- .../1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 32 ++++++++++--------- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 933047bbe95b..23242fd8a375 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r73" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r74" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index ebafa7e0687d..a94e14ea2bf9 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -1,16 +1,18 @@ -# What is JupyterHub Single User Base? +# Jupyter Base Notebook packaged by Bitnami -> JupyterHub Single User is an instance of Jupyter Notebook. The Base flavor is based on the `base-notebook` version of Jupyter Notebook. +## What is Jupyter Base Notebook? -[Overview of JupyterHub Single User Base](https://github.com/jupyter/docker-stacks) +> Jupyter Base Notebook is an instance of Jupyter Notebook for your JupyterHub installation. The Base flavor contains the essential Python 3 packages and the JupyterLab user interface. -# TL;DR +[Overview of Jupyter Base Notebook](https://github.com/jupyter/docker-stacks) + +## TL;DR ```console $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest ``` -# Why use Bitnami Images? +## Why use Bitnami Images? * Bitnami closely tracks upstream source changes and promptly publishes new versions of this image using our automated systems. * With Bitnami images the latest bug fixes and features are available as soon as possible. @@ -22,16 +24,16 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest > This [CVE scan report](https://quay.io/repository/bitnami/jupyter-base-notebook?tab=tags) contains a security report with all open CVEs. To get the list of actionable security issues, find the "latest" tag, click the vulnerability report link under the corresponding "Security scan" field and then select the "Only show fixable" filter on the next page. -# Supported tags and respective `Dockerfile` links +## Supported tags and respective `Dockerfile` links Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r73`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r73/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r74`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r74/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). -# Get this image +## Get this image The recommended way to get the Bitnami jupyter-base-notebook Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/jupyter-base-notebook). @@ -51,13 +53,13 @@ If you wish, you can also build the image yourself. $ docker build -t bitnami/jupyter-base-notebook:latest 'https://github.com/bitnami/bitnami-docker-jupyter-base-notebook.git#master:1/debian-10' ``` -# Why use a non-root container? +## Why use a non-root container? Non-root container images add an extra layer of security and are generally recommended for production environments. However, because they run as a non-root user, privileged tasks are typically off-limits. Learn more about non-root containers [in our docs](https://docs.bitnami.com/tutorials/work-with-non-root-containers/). -# Configuration +## Configuration -## Running commands +### Running commands To run commands inside this container you can use `docker run`, for example to execute `jupyterhub-singleuser --version` you can follow the example below: @@ -67,7 +69,7 @@ $ docker run --rm --name jupyter-base-notebook bitnami/jupyter-base-notebook:lat Check the [official Jupyter Notebook documentation](https://jupyter.readthedocs.io/en/latest/running.html) for a list of the available parameters. -## Adding more python packages +### Adding more python packages To add more python packages, you need to create a Dockerfile extending the current image, and the commands to install the desired packages. In the following example, the base notebook image is used to add `scipy` and `matplotlib`. @@ -81,11 +83,11 @@ RUN conda install --quiet --yes \ conda clean --all -f -y ``` -# Contributing +## Contributing We'd love for you to contribute to this container. You can request new features by creating an [issue](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/issues), or submit a [pull request](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/pulls) with your contribution. -# Issues +## Issues If you encountered a problem running this container, you can file an [issue](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/issues/new). For us to provide better support, be sure to include the following information in your issue: @@ -95,7 +97,7 @@ If you encountered a problem running this container, you can file an [issue](htt - Version of this container - The command you used to run the container, and any relevant output you saw (masking any sensitive information) -# License +## License Copyright 2021 Bitnami From ad5225743804663e3925facd358709edc5afe1f4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 7 Nov 2021 05:46:39 +0000 Subject: [PATCH 180/436] 1.4.2-debian-10-r75 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 23242fd8a375..3faa82d0f01e 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r74" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r75" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index a94e14ea2bf9..74cc3ed58aee 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -29,7 +29,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r74`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r74/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r75`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r75/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From b675c2a3f6b92f9c609d20aae463330dd485deaa Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 8 Nov 2021 06:06:49 +0000 Subject: [PATCH 181/436] 1.4.2-debian-10-r76 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 3faa82d0f01e..4643a7c1b5c6 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r75" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r76" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 74cc3ed58aee..40c94bf05ae7 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -29,7 +29,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r75`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r75/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r76`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r76/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From e37b7336df81284170e4099bc305634d40011743 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 9 Nov 2021 06:26:25 +0000 Subject: [PATCH 182/436] 1.4.2-debian-10-r77 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 4643a7c1b5c6..caea76d27053 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r76" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r77" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 40c94bf05ae7..2022f3a5e17c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -29,7 +29,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r76`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r76/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r77`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r77/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 5a7bc6c3a5515ec29df9b0fd2a2471d0846fc594 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 9 Nov 2021 14:31:01 +0000 Subject: [PATCH 183/436] 1.4.2-debian-10-r78 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index caea76d27053..380d213bbc5f 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -13,15 +13,15 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "54517d6ea3a8f4d8f619db061b0c056aaafb6cf308ad0fe2c4357f41c007ec61 /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.4.2-0-linux-amd64-debian-10.tar.gz && \ - echo "916b2018eedfc53b6c8d2ea5406530163856afc9b33138fb6f596948b1f439e5 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.2-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.2-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.2-0-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.4.2-1-linux-amd64-debian-10.tar.gz && \ + echo "8f60e0bd80c871c863b4713aadc9d43d35f8e093543ef149f8471829d1c08736 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.2-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.2-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.2-1-linux-amd64-debian-10.tar.gz RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r77" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r78" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 8e402ad8106b..eb4adf492403 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "916b2018eedfc53b6c8d2ea5406530163856afc9b33138fb6f596948b1f439e5", + "digest": "8f60e0bd80c871c863b4713aadc9d43d35f8e093543ef149f8471829d1c08736", "distro": "debian-10", "type": "NAMI", - "version": "1.4.2-0" + "version": "1.4.2-1" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 2022f3a5e17c..ef5e8881885b 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -29,7 +29,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r77`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r77/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r78`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r78/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 6aba126f091bcbd51251b2917703d5f6d0dfa580 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 10 Nov 2021 18:05:52 +0000 Subject: [PATCH 184/436] 1.5.0-debian-10-r0 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 380d213bbc5f..6dcad0b3d579 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -13,15 +13,15 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "54517d6ea3a8f4d8f619db061b0c056aaafb6cf308ad0fe2c4357f41c007ec61 /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.4.2-1-linux-amd64-debian-10.tar.gz && \ - echo "8f60e0bd80c871c863b4713aadc9d43d35f8e093543ef149f8471829d1c08736 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.2-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.2-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.4.2-1-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-0-linux-amd64-debian-10.tar.gz && \ + echo "0057cb00a747f5ebff5b2642f07c0dc8c6573afaae4b275758d378ae85fd4689 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-0-linux-amd64-debian-10.tar.gz RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-10-r78" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r0" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index eb4adf492403..ff624d84d587 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "8f60e0bd80c871c863b4713aadc9d43d35f8e093543ef149f8471829d1c08736", + "digest": "0057cb00a747f5ebff5b2642f07c0dc8c6573afaae4b275758d378ae85fd4689", "distro": "debian-10", "type": "NAMI", - "version": "1.4.2-1" + "version": "1.5.0-0" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index ef5e8881885b..297deca0882d 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -29,7 +29,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.4.2`, `1.4.2-debian-10-r78`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.4.2-debian-10-r78/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r0/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From ebf32565fa5c7d26c708890e295ff194690e05f0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 11 Nov 2021 21:48:24 +0000 Subject: [PATCH 185/436] 1.5.0-debian-10-r1 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 6dcad0b3d579..11c3760ffdfb 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r1" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 297deca0882d..1ba8026098a9 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -29,7 +29,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r0/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r1`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r1/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From bcd7fba815fd9e25b5836c38f6650fc8f799e71c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 12 Nov 2021 22:10:53 +0000 Subject: [PATCH 186/436] 1.5.0-debian-10-r2 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 11c3760ffdfb..22816df47903 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r2" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 1ba8026098a9..ac4e404fa6f0 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -29,7 +29,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r1`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r1/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r2`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r2/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From c545b86eb5df2782d11118a3c41847a0fb425da6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 13 Nov 2021 22:31:29 +0000 Subject: [PATCH 187/436] 1.5.0-debian-10-r3 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 22816df47903..764f2c6363f2 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r3" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index ac4e404fa6f0..2f068509b867 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -29,7 +29,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r2`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r2/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r3`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r3/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 1143fd9ee2150ca2eadc7d6579f232e980337c54 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 14 Nov 2021 22:52:14 +0000 Subject: [PATCH 188/436] 1.5.0-debian-10-r4 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 764f2c6363f2..fdd0eb7486d3 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r4" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 2f068509b867..6a18fff24bb6 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -29,7 +29,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r3`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r3/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r4`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r4/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 07bf62b8d7359ae352d91bb9fd17d4f2fe107b16 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 15 Nov 2021 23:10:29 +0000 Subject: [PATCH 189/436] 1.5.0-debian-10-r5 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index fdd0eb7486d3..34b7e12b76c2 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r5" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 6a18fff24bb6..4e66dc9c6524 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -6,6 +6,8 @@ [Overview of Jupyter Base Notebook](https://github.com/jupyter/docker-stacks) +Trademarks: This software listing is packaged by Bitnami. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement. + ## TL;DR ```console @@ -29,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r4`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r4/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r5`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r5/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 1c44cdbc2df9903fe7b2c166a9b31e7d1c027fbc Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 16 Nov 2021 23:44:34 +0000 Subject: [PATCH 190/436] 1.5.0-debian-10-r6 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 34b7e12b76c2..22e98b40e1bc 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r6" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 4e66dc9c6524..e0a04acf6d0f 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r5`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r5/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r6`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r6/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 2627c12962050c86b3e682220c682f05413277b6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 18 Nov 2021 00:03:00 +0000 Subject: [PATCH 191/436] 1.5.0-debian-10-r7 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 22e98b40e1bc..901e8df2070c 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r7" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index e0a04acf6d0f..c11838e75797 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r6`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r6/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r7`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r7/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 3f54b840e76686ed78856ecf69d3f8792cc52291 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 19 Nov 2021 00:21:50 +0000 Subject: [PATCH 192/436] 1.5.0-debian-10-r8 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 901e8df2070c..9d563d20243f 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r8" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index c11838e75797..92e679174466 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r7`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r7/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r8`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r8/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 43b528c6eeaf3afc17e643d36ac1485b48c9b0f4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 20 Nov 2021 23:19:51 +0000 Subject: [PATCH 193/436] 1.5.0-debian-10-r9 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 9d563d20243f..889127efe5f9 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r9" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 92e679174466..d5ec48dc67a0 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r8`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r8/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r9`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r9/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 24917340e708346feaec974768f22768d8ae7837 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 21 Nov 2021 23:36:50 +0000 Subject: [PATCH 194/436] 1.5.0-debian-10-r10 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 889127efe5f9..2db71bf38abc 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r10" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index d5ec48dc67a0..8c65ad6ebe75 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r9`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r9/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r10`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r10/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 0b61f369e1970de49f68339d8e1103d29a1695b1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 23 Nov 2021 00:05:20 +0000 Subject: [PATCH 195/436] 1.5.0-debian-10-r11 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 2db71bf38abc..e442e0bccc2b 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r11" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 8c65ad6ebe75..883520df1d4c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r10`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r10/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r11`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r11/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 2e4ee44e5bae7639df940692e122926e462539be Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 24 Nov 2021 00:23:22 +0000 Subject: [PATCH 196/436] 1.5.0-debian-10-r12 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index e442e0bccc2b..89b613087fa5 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r12" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 883520df1d4c..4a7796d71294 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r11`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r11/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r12`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r12/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 7c958de09269016d179aac84307c67aed658234b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 25 Nov 2021 00:44:21 +0000 Subject: [PATCH 197/436] 1.5.0-debian-10-r13 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 89b613087fa5..1c6c47f7f684 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r13" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 4a7796d71294..986055e2f2eb 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r12`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r12/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r13`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r13/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 580181b0ab48979d4f2ff466288acc9f9bac602e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 26 Nov 2021 01:04:50 +0000 Subject: [PATCH 198/436] 1.5.0-debian-10-r14 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 1c6c47f7f684..32a93245b89a 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r14" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 986055e2f2eb..b902e3efb464 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r13`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r13/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r14`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r14/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From c962b7b1ccd33f403eae5ad179e3d94a6b9163ec Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 28 Nov 2021 04:05:02 +0000 Subject: [PATCH 199/436] 1.5.0-debian-10-r16 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 32a93245b89a..c0a4d24a43a9 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r16" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index b902e3efb464..5b284611ddc7 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r14`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r14/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r16`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r16/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 894dec07ead714d9ad195e79d5d66443c68b773a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 29 Nov 2021 04:26:21 +0000 Subject: [PATCH 200/436] 1.5.0-debian-10-r17 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index c0a4d24a43a9..efcc15492760 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r17" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 5b284611ddc7..0d23b7e97610 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r16`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r16/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r17`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r17/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From e42519e730d8ba824d609ad27f93790985c88154 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 30 Nov 2021 04:46:01 +0000 Subject: [PATCH 201/436] 1.5.0-debian-10-r18 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index efcc15492760..8e4e4d2c174e 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r18" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 0d23b7e97610..3d8faba07069 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r17`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r17/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r18`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r18/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From b874aca2291213b5f0dcdcb82b04b87657be2204 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 1 Dec 2021 13:59:44 +0000 Subject: [PATCH 202/436] 1.5.0-debian-10-r19 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 8e4e4d2c174e..dde964b36223 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r19" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 3d8faba07069..f50f6f282e00 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r18`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r18/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r19`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r19/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From d0b7ae94d2e705379ad86ddf4cf86defac386a43 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 2 Dec 2021 14:21:29 +0000 Subject: [PATCH 203/436] 1.5.0-debian-10-r20 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index dde964b36223..a84fc68bf640 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r20" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f50f6f282e00..b0ac6355463e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r19`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r19/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r20`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r20/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 4c79c3e5d9abbde6821573778a3fad929d428683 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 3 Dec 2021 14:44:25 +0000 Subject: [PATCH 204/436] 1.5.0-debian-10-r21 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index a84fc68bf640..53d8742826ad 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r20" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r21" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index b0ac6355463e..a2476d22b6fa 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r20`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r20/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r21`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r21/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 14ee09db85b47dd4abc4a75adad09633a87ff8fe Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 4 Dec 2021 15:04:32 +0000 Subject: [PATCH 205/436] 1.5.0-debian-10-r22 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 53d8742826ad..e108a7079d5f 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r21" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r22" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index a2476d22b6fa..05a0a19e7818 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r21`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r21/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r22`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r22/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From dfd9f680e9a79e9fa07ad20cbc0beb531a9a5914 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 5 Dec 2021 15:23:42 +0000 Subject: [PATCH 206/436] 1.5.0-debian-10-r23 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index e108a7079d5f..4dfd32ee5f3e 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r22" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r23" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 05a0a19e7818..ca607a0a96af 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r22`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r22/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r23`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r23/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 220ba5588b26a546d4367b19614dab9f4849a74b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 6 Dec 2021 16:36:05 +0000 Subject: [PATCH 207/436] 1.5.0-debian-10-r24 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 4dfd32ee5f3e..89478dabcd26 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r23" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r24" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index ca607a0a96af..8dc355ec6a78 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r23`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r23/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r24`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r24/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 5b460d7d55aedcb159649550fbffccaffbab2379 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 7 Dec 2021 23:14:31 +0000 Subject: [PATCH 208/436] 1.5.0-debian-10-r25 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 89478dabcd26..def5c731185c 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r24" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r25" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 8dc355ec6a78..df372fef7036 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r24`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r24/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r25`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r25/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 60001a78c192e8ad3ac5e03e2dbdad0add2b728d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 8 Dec 2021 23:40:34 +0000 Subject: [PATCH 209/436] 1.5.0-debian-10-r26 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index def5c731185c..4cfc72937b5d 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r25" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r26" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index df372fef7036..446ceadcfc35 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r25`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r25/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r26`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r26/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 39fdf6e3b9225eeba47030570b438cf91069047a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 9 Dec 2021 18:52:05 +0000 Subject: [PATCH 210/436] 1.5.0-debian-10-r27 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 4cfc72937b5d..41a0f7fcc8a5 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -13,15 +13,15 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "54517d6ea3a8f4d8f619db061b0c056aaafb6cf308ad0fe2c4357f41c007ec61 /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-0-linux-amd64-debian-10.tar.gz && \ - echo "0057cb00a747f5ebff5b2642f07c0dc8c6573afaae4b275758d378ae85fd4689 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-0-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-1-linux-amd64-debian-10.tar.gz && \ + echo "1204647977fe22befccd2767c57e75ad4c03bb39af614b9d049b9533e465070b /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-1-linux-amd64-debian-10.tar.gz RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r26" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r27" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index ff624d84d587..5f64275317c5 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "0057cb00a747f5ebff5b2642f07c0dc8c6573afaae4b275758d378ae85fd4689", + "digest": "1204647977fe22befccd2767c57e75ad4c03bb39af614b9d049b9533e465070b", "distro": "debian-10", "type": "NAMI", - "version": "1.5.0-0" + "version": "1.5.0-1" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 446ceadcfc35..0925ec68c66c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r26`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r26/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r27`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r27/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 78e02cf1c3bebb0d394bd7124597367c978ea778 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 10 Dec 2021 19:12:58 +0000 Subject: [PATCH 211/436] 1.5.0-debian-10-r28 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 41a0f7fcc8a5..fd25b8b0b8f4 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r27" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r28" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 0925ec68c66c..65077f18b22d 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r27`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r27/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r28`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r28/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 2d67ea50dfb8785025f1d403a94afbf55014f4a5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 11 Dec 2021 19:32:46 +0000 Subject: [PATCH 212/436] 1.5.0-debian-10-r29 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index fd25b8b0b8f4..ec184fc62eca 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r28" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r29" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 65077f18b22d..08ece8de0de1 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r28`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r28/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r29`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r29/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 77ce2b95359e35ecc5f84fd8aced6586e0307f12 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 12 Dec 2021 19:51:35 +0000 Subject: [PATCH 213/436] 1.5.0-debian-10-r30 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index ec184fc62eca..842f395369a4 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r29" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r30" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 08ece8de0de1..b9d29af5609a 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r29`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r29/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r30`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r30/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f0d2b28bb933392ef75acef6b63317c8c4bd03ac Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 13 Dec 2021 20:12:46 +0000 Subject: [PATCH 214/436] 1.5.0-debian-10-r31 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 842f395369a4..f8d9a84c9fe0 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r30" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r31" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index b9d29af5609a..af9e31f3e6f9 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r30`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r30/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r31`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r31/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 52eec1ddc936629f0045dc7498eabec5096a58ad Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 14 Dec 2021 21:21:07 +0000 Subject: [PATCH 215/436] 1.5.0-debian-10-r32 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index f8d9a84c9fe0..8fb3d4202edf 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r31" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r32" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index af9e31f3e6f9..f7923d4b8f90 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r31`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r31/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r32`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r32/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 6af7aca3bbd3f111b588f00501950a9ca16b5c62 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 15 Dec 2021 21:54:29 +0000 Subject: [PATCH 216/436] 1.5.0-debian-10-r33 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 8fb3d4202edf..84c629b87474 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r32" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r33" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f7923d4b8f90..695e4c790bf6 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r32`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r32/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r33`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r33/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 70e7b589a10ccceffd2e2f1f81999e1572008a5a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 16 Dec 2021 23:39:18 +0000 Subject: [PATCH 217/436] 1.5.0-debian-10-r34 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 84c629b87474..182a649f606d 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r33" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r34" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 695e4c790bf6..7fc63bd93171 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r33`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r33/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r34`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r34/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f111b5967b3cf5cb3cf855928f09a1ef803bb511 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 17 Dec 2021 23:58:39 +0000 Subject: [PATCH 218/436] 1.5.0-debian-10-r35 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 182a649f606d..3d2868bf36f8 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r34" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r35" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 7fc63bd93171..837dfae1a348 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r34`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r34/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r35`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r35/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From d6b1d1f8b967d3bb4373f9a200658e8adeb01452 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 19 Dec 2021 00:22:09 +0000 Subject: [PATCH 219/436] 1.5.0-debian-10-r36 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 3d2868bf36f8..9e3bf9273789 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r35" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r36" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 837dfae1a348..94a068e3465b 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r35`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r35/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r36`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r36/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 9ea652d8d7aa9c90fd642a3e2da0a5c2afc95678 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 20 Dec 2021 00:47:36 +0000 Subject: [PATCH 220/436] 1.5.0-debian-10-r37 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 9e3bf9273789..8f7d98cdafe8 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r36" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r37" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 94a068e3465b..d5ce2a3ee049 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r36`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r36/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r37`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r37/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 6ed1af0d5ffcf0827d1067bab51d84322b18f8f5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 20 Dec 2021 19:03:21 +0000 Subject: [PATCH 221/436] 2.0.0-debian-10-r0 release --- .../2/debian-10/Dockerfile | 29 +++++++++++++++++++ .../2/debian-10/docker-compose.yml | 7 +++++ .../opt/bitnami/.bitnami_components.json | 16 ++++++++++ .../opt/bitnami/licenses/licenses.txt | 3 ++ .../prebuildfs/usr/sbin/install_packages | 24 +++++++++++++++ bitnami/jupyter-base-notebook/README.md | 5 ++-- .../jupyter-base-notebook/docker-compose.yml | 2 +- 7 files changed, 83 insertions(+), 3 deletions(-) create mode 100644 bitnami/jupyter-base-notebook/2/debian-10/Dockerfile create mode 100644 bitnami/jupyter-base-notebook/2/debian-10/docker-compose.yml create mode 100644 bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json create mode 100644 bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/licenses/licenses.txt create mode 100755 bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/usr/sbin/install_packages diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile new file mode 100644 index 000000000000..89a460081993 --- /dev/null +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -0,0 +1,29 @@ +FROM docker.io/bitnami/minideb:buster +LABEL maintainer "Bitnami " + +ENV HOME="/opt/bitnami/jupyterhub-singleuser/" \ + OS_ARCH="amd64" \ + OS_FLAVOUR="debian-10" \ + OS_NAME="linux" + +COPY prebuildfs / +# Install required system packages and dependencies +RUN install_packages ca-certificates curl gzip libc6 libgcc1 libstdc++6 procps tar wget +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz && \ + echo "54517d6ea3a8f4d8f619db061b0c056aaafb6cf308ad0fe2c4357f41c007ec61 /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.0.0-0-linux-amd64-debian-10.tar.gz && \ + echo "2c06fb78a566594723fd6954a3786f80a539cb562b26f84505611d94defb4914 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.0-0-linux-amd64-debian-10.tar.gz +RUN chmod g+rwX /opt/bitnami +RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ + +ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ + BITNAMI_IMAGE_VERSION="2.0.0-debian-10-r0" \ + PATH="/opt/bitnami/miniconda/bin:$PATH" + +USER 1001 +ENTRYPOINT [ "tini", "-g", "--" ] +CMD [ "jupyterhub-singleuser" ] diff --git a/bitnami/jupyter-base-notebook/2/debian-10/docker-compose.yml b/bitnami/jupyter-base-notebook/2/debian-10/docker-compose.yml new file mode 100644 index 000000000000..2a203737361c --- /dev/null +++ b/bitnami/jupyter-base-notebook/2/debian-10/docker-compose.yml @@ -0,0 +1,7 @@ +version: '2' +services: + jupyter-base-notebook: + image: docker.io/bitnami/jupyter-base-notebook:2 + command: ["tail", "-f", "/dev/null"] + ports: + - 8888:8888 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json new file mode 100644 index 000000000000..0e8e7cf8d015 --- /dev/null +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -0,0 +1,16 @@ +{ + "jupyter-base-notebook": { + "arch": "amd64", + "digest": "2c06fb78a566594723fd6954a3786f80a539cb562b26f84505611d94defb4914", + "distro": "debian-10", + "type": "NAMI", + "version": "2.0.0-0" + }, + "miniconda": { + "arch": "amd64", + "digest": "54517d6ea3a8f4d8f619db061b0c056aaafb6cf308ad0fe2c4357f41c007ec61", + "distro": "debian-10", + "type": "NAMI", + "version": "4.10.3-0" + } +} \ No newline at end of file diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/licenses/licenses.txt b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/licenses/licenses.txt new file mode 100644 index 000000000000..c76ba31f3b8a --- /dev/null +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/licenses/licenses.txt @@ -0,0 +1,3 @@ +Bitnami containers ship with software bundles. You can find the licenses under: +/opt/bitnami/nami/COPYING +/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/usr/sbin/install_packages b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/usr/sbin/install_packages new file mode 100755 index 000000000000..c9577647443b --- /dev/null +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/usr/sbin/install_packages @@ -0,0 +1,24 @@ +#!/bin/sh +set -e +set -u +export DEBIAN_FRONTEND=noninteractive +n=0 +max=2 +until [ $n -gt $max ]; do + set +e + ( + apt-get update -qq && + apt-get install -y --no-install-recommends "$@" + ) + CODE=$? + set -e + if [ $CODE -eq 0 ]; then + break + fi + if [ $n -eq $max ]; then + exit $CODE + fi + echo "apt failed, retrying" + n=$(($n + 1)) +done +rm -r /var/lib/apt/lists /var/cache/apt/archives diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index d5ce2a3ee049..419f0ffc856e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,8 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r37`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r37/1/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.0`, `2.0.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.0-debian-10-r0/2/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r37` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r37/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). @@ -52,7 +53,7 @@ $ docker pull bitnami/jupyter-base-notebook:[TAG] If you wish, you can also build the image yourself. ```console -$ docker build -t bitnami/jupyter-base-notebook:latest 'https://github.com/bitnami/bitnami-docker-jupyter-base-notebook.git#master:1/debian-10' +$ docker build -t bitnami/jupyter-base-notebook:latest 'https://github.com/bitnami/bitnami-docker-jupyter-base-notebook.git#master:2/debian-10' ``` ## Why use a non-root container? diff --git a/bitnami/jupyter-base-notebook/docker-compose.yml b/bitnami/jupyter-base-notebook/docker-compose.yml index c43ec5db2bcc..2a203737361c 100644 --- a/bitnami/jupyter-base-notebook/docker-compose.yml +++ b/bitnami/jupyter-base-notebook/docker-compose.yml @@ -1,7 +1,7 @@ version: '2' services: jupyter-base-notebook: - image: docker.io/bitnami/jupyter-base-notebook:1 + image: docker.io/bitnami/jupyter-base-notebook:2 command: ["tail", "-f", "/dev/null"] ports: - 8888:8888 From 1e7591cb8d898d5836d7bcf529f2de75cc6f36a0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 21 Dec 2021 01:17:28 +0000 Subject: [PATCH 222/436] 1.5.0-debian-10-r38 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 8f7d98cdafe8..e69b93c8364c 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r37" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r38" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 419f0ffc856e..0b1576a7aa40 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.0`, `2.0.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.0-debian-10-r0/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r37` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r37/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r38` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r38/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From b620bdd786d9a7cfc112295e274a5a31c26adc27 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 21 Dec 2021 19:24:47 +0000 Subject: [PATCH 223/436] 2.0.0-debian-10-r1 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 89a460081993..050fbb418091 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.0-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.0.0-debian-10-r1" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 0b1576a7aa40..5f889b52a531 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.0`, `2.0.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.0-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.0`, `2.0.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.0-debian-10-r1/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r38` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r38/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 3d48ccd1e45879b7dbf2ea1abea06b260666723d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 22 Dec 2021 01:41:33 +0000 Subject: [PATCH 224/436] 1.5.0-debian-10-r39 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index e69b93c8364c..9abbe6b321fb 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r38" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r39" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 5f889b52a531..716b57239257 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.0`, `2.0.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.0-debian-10-r1/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r38` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r38/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r39` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r39/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From b828001168e74d480b34aa575cb25c6645db7513 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 22 Dec 2021 17:14:06 +0000 Subject: [PATCH 225/436] 2.0.1-debian-10-r0 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 050fbb418091..f464a3eabba5 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -13,15 +13,15 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "54517d6ea3a8f4d8f619db061b0c056aaafb6cf308ad0fe2c4357f41c007ec61 /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.0.0-0-linux-amd64-debian-10.tar.gz && \ - echo "2c06fb78a566594723fd6954a3786f80a539cb562b26f84505611d94defb4914 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.0-0-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.0.1-0-linux-amd64-debian-10.tar.gz && \ + echo "3c657a1c078ba300cc22a838dbec35cf1a50a4b235a80292085eefbb24c4ad13 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.1-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.1-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.1-0-linux-amd64-debian-10.tar.gz RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.0-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r0" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 0e8e7cf8d015..f22f0d2430ce 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "2c06fb78a566594723fd6954a3786f80a539cb562b26f84505611d94defb4914", + "digest": "3c657a1c078ba300cc22a838dbec35cf1a50a4b235a80292085eefbb24c4ad13", "distro": "debian-10", "type": "NAMI", - "version": "2.0.0-0" + "version": "2.0.1-0" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 716b57239257..48127e509ed3 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.0`, `2.0.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.0-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r0/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r39` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r39/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 2aef283a03f5f0e0ce52c77622a84fe38bf2936b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 23 Dec 2021 02:02:23 +0000 Subject: [PATCH 226/436] 1.5.0-debian-10-r40 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 9abbe6b321fb..de55b82fbc0a 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r39" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r40" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 48127e509ed3..0deb9a45d1ac 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r0/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r39` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r39/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r40` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r40/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From ae86b87989aaf72256317dc89c32fec0bef720b9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 23 Dec 2021 19:24:33 +0000 Subject: [PATCH 227/436] 2.0.1-debian-10-r1 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index f464a3eabba5..8a4618a54f8e 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r1" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 0deb9a45d1ac..0f3f13a020aa 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r1/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r40` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r40/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From cd52cb50d975bdb3f2d1523f32cb9ace585f5024 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 24 Dec 2021 02:21:04 +0000 Subject: [PATCH 228/436] 1.5.0-debian-10-r41 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index de55b82fbc0a..ac83f2677051 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r40" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r41" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 0f3f13a020aa..3d11a855fd8f 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r1/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r40` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r40/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r41` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r41/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 57c51f779a9faf96d7a0514641d411523eadfeee Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 24 Dec 2021 19:39:39 +0000 Subject: [PATCH 229/436] 2.0.1-debian-10-r2 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 8a4618a54f8e..025707cd1589 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r2" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 3d11a855fd8f..f587fab8cdc9 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r2/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r41` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r41/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From dda1d240ec757c75b28dd1b3b0bdc0b1bdc406ff Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 25 Dec 2021 02:42:24 +0000 Subject: [PATCH 230/436] 1.5.0-debian-10-r42 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index ac83f2677051..d86d63bd256a 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r41" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r42" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f587fab8cdc9..4328012a476c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r2/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r41` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r41/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r42` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r42/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 06a9a7b9b66b213cbd6552733c69cc6fe1a1eda3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 25 Dec 2021 19:55:15 +0000 Subject: [PATCH 231/436] 2.0.1-debian-10-r3 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 025707cd1589..150563219e35 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r3" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 4328012a476c..5bec78821c3d 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r3/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r42` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r42/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From ca1b36784e53bf1ef0286bd856c6ef55ba45c5c6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 26 Dec 2021 03:00:29 +0000 Subject: [PATCH 232/436] 1.5.0-debian-10-r43 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index d86d63bd256a..a9b3e77705a7 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r42" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r43" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 5bec78821c3d..f9f8d4929332 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r3/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r42` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r42/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r43` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r43/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 234c31d695b117b4f178e04b92baba5ac568a57d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 26 Dec 2021 21:11:29 +0000 Subject: [PATCH 233/436] 2.0.1-debian-10-r4 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 150563219e35..ce69d556c9f5 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r4" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f9f8d4929332..fbb2affa7a2c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r4/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r43` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r43/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From b85d43ce4c28d3c5199588825c05f36b9a3b151e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 27 Dec 2021 03:20:43 +0000 Subject: [PATCH 234/436] 1.5.0-debian-10-r44 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index a9b3e77705a7..70fb49fcb1ba 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r43" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r44" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index fbb2affa7a2c..5004a08d994d 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r4/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r43` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r43/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r44` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r44/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f854a8bf3f2cd5a8233fa657f368d1e52a44dc85 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 27 Dec 2021 23:34:10 +0000 Subject: [PATCH 235/436] 2.0.1-debian-10-r5 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index ce69d556c9f5..2e277a179993 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r5" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 5004a08d994d..a2c4ad223871 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r5/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r44` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r44/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 98773de762ca443a5a8ead8a30b54929334bd294 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 28 Dec 2021 03:39:33 +0000 Subject: [PATCH 236/436] 1.5.0-debian-10-r45 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 70fb49fcb1ba..7c6cacef17c6 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r44" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r45" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index a2c4ad223871..055c133dbc50 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r5/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r44` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r44/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r45` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r45/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From e8447dc828eb5dcbe421b178e5ba5c074bc80d0a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 28 Dec 2021 23:50:02 +0000 Subject: [PATCH 237/436] 2.0.1-debian-10-r6 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 2e277a179993..bcfb7ce12497 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r6" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 055c133dbc50..c6d7e59c8f97 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r5/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r6/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r45` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r45/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 67108e7e5e3b48e0e2bcfaa83c31fe0375eac100 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 29 Dec 2021 04:00:05 +0000 Subject: [PATCH 238/436] 1.5.0-debian-10-r46 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 7c6cacef17c6..ffb3163e5b7d 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r45" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r46" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index c6d7e59c8f97..1c980452ac64 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r6/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r45` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r45/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r46` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r46/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 085412beea4b2ba7ba2e69d2247e79c62509e0fc Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 30 Dec 2021 00:04:42 +0000 Subject: [PATCH 239/436] 2.0.1-debian-10-r7 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index bcfb7ce12497..e26106e55c58 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r7" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 1c980452ac64..b0bdf80d9cec 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r6/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r7/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r46` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r46/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 9f493bf8ee08c4e144cd4ca224b66f2aac2dd3e3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 30 Dec 2021 04:20:44 +0000 Subject: [PATCH 240/436] 1.5.0-debian-10-r47 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index ffb3163e5b7d..1bd6b1589532 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r46" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r47" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index b0bdf80d9cec..5cc7febc62fb 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r7/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r46` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r46/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r47` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r47/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 024a24d5df734e0ec75355a85d9ed92463d88fb7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 31 Dec 2021 00:26:45 +0000 Subject: [PATCH 241/436] 2.0.1-debian-10-r8 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index e26106e55c58..e24afb48b77f 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r8" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 5cc7febc62fb..35ae56c284c0 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r7/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r8/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r47` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r47/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From e500593c4f1e6af4c415b749a96cb77272fff4cd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 31 Dec 2021 04:43:28 +0000 Subject: [PATCH 242/436] 1.5.0-debian-10-r48 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 1bd6b1589532..fba9fc411c93 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r47" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r48" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 35ae56c284c0..3df113676754 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r8/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r47` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r47/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r48` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r48/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From c161952f429441ab187cca1539ce5d93c5e274ff Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 1 Jan 2022 00:44:18 +0000 Subject: [PATCH 243/436] 2.0.1-debian-10-r9 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index e24afb48b77f..d8ad0437d8a6 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r9" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 3df113676754..352ccdd39c66 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r8/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r9/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r48` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r48/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). @@ -102,7 +102,7 @@ If you encountered a problem running this container, you can file an [issue](htt ## License -Copyright 2021 Bitnami +Copyright 2022 Bitnami Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. From 16d30a4ffd24bbb0f8967d479a8239a527f8e415 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 1 Jan 2022 05:06:12 +0000 Subject: [PATCH 244/436] 1.5.0-debian-10-r49 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index fba9fc411c93..12853b2e729e 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r48" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r49" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 352ccdd39c66..09d9ebf05402 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r9/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r48` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r48/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r49` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r49/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From c35f2105a20270168682b6a74d9bb5f2ef6c2e30 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 2 Jan 2022 01:03:48 +0000 Subject: [PATCH 245/436] 2.0.1-debian-10-r10 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index d8ad0437d8a6..81663b21dc0c 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r10" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 09d9ebf05402..4f8b875a77e2 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r9/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r10/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r49` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r49/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 09bbbbbe809c101de244c41b2a8ae73cc24435d5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 2 Jan 2022 05:31:12 +0000 Subject: [PATCH 246/436] 1.5.0-debian-10-r50 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 12853b2e729e..5ea4450a31df 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r49" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r50" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 4f8b875a77e2..6d24984a26e5 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r10/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r49` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r49/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r50` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r50/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From ac683b57cb627eba0adb0fb6e21ed63e61d869d4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 3 Jan 2022 01:20:11 +0000 Subject: [PATCH 247/436] 2.0.1-debian-10-r11 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 81663b21dc0c..cd25854a7530 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r11" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 6d24984a26e5..1759cabb06be 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r10/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r11/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r50` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r50/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From b0aeac542e9fc11fe2877b40f95cba2d31dcdfb8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 3 Jan 2022 05:53:48 +0000 Subject: [PATCH 248/436] 1.5.0-debian-10-r51 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 5ea4450a31df..06ccb57e7229 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r50" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r51" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 1759cabb06be..87ccf55a280a 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r11/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r50` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r50/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r51` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r51/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 15f36c7d94f4a41a09ce71c640eb710c28a25b6c Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Hernandez Date: Mon, 3 Jan 2022 07:27:43 +0000 Subject: [PATCH 249/436] Update year in LICENSE file --- bitnami/jupyter-base-notebook/LICENSE | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 bitnami/jupyter-base-notebook/LICENSE diff --git a/bitnami/jupyter-base-notebook/LICENSE b/bitnami/jupyter-base-notebook/LICENSE deleted file mode 100644 index c850fde34074..000000000000 --- a/bitnami/jupyter-base-notebook/LICENSE +++ /dev/null @@ -1,13 +0,0 @@ -Copyright (c) 2015-2021 Bitnami - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. From ff5c174c705d8938f3a0adc1302176be44b2854e Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Hernandez Date: Mon, 3 Jan 2022 07:38:34 +0000 Subject: [PATCH 250/436] Update year in LICENSE and rename file --- bitnami/jupyter-base-notebook/LICENSE.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bitnami/jupyter-base-notebook/LICENSE.md diff --git a/bitnami/jupyter-base-notebook/LICENSE.md b/bitnami/jupyter-base-notebook/LICENSE.md new file mode 100644 index 000000000000..cdc8ab40132d --- /dev/null +++ b/bitnami/jupyter-base-notebook/LICENSE.md @@ -0,0 +1,13 @@ +Copyright © 2022 Bitnami + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. From 8a941e58f84da0ab516d3f5a6066794660973316 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 4 Jan 2022 06:16:47 +0000 Subject: [PATCH 251/436] 1.5.0-debian-10-r52 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 06ccb57e7229..d6900b9777c0 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r51" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r52" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 87ccf55a280a..e176e75ce4be 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r11/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r51` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r51/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r52` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r52/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). @@ -83,7 +83,7 @@ FROM bitnami/jupyter-base-notebook:latest RUN conda install --quiet --yes \ 'matplotlib-base' \ 'scipy' && \ - conda clean --all -f -y + conda clean --all -f -y ``` ## Contributing @@ -102,7 +102,7 @@ If you encountered a problem running this container, you can file an [issue](htt ## License -Copyright 2022 Bitnami +Copyright © 2022 Bitnami Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. From 0b5f3dc79c5c47d5625401d066bfa8a68ac10dc6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 4 Jan 2022 06:31:17 +0000 Subject: [PATCH 252/436] 2.0.1-debian-10-r12 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index cd25854a7530..4ba5fe5a3d8f 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r12" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index e176e75ce4be..db572eba3877 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r11/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r12/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r52` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r52/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From c2e83c1faad287fcab4985b8946158d950dcb366 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 5 Jan 2022 06:38:41 +0000 Subject: [PATCH 253/436] 1.5.0-debian-10-r53 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index d6900b9777c0..8c56239ff9ac 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r52" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r53" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index db572eba3877..1e62b1ea3bd4 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r12/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r52` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r52/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r53` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r53/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 4bf16a4a98652e941d825535a67aeedba7600d4f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 5 Jan 2022 06:51:46 +0000 Subject: [PATCH 254/436] 2.0.1-debian-10-r13 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 4ba5fe5a3d8f..9674ef37ed09 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r13" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 1e62b1ea3bd4..de737a9b8c77 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r12/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r13/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r53` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r53/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From e23fd77384584e187b6b7be9c5ac610e9ab3dde2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 6 Jan 2022 09:29:57 +0000 Subject: [PATCH 255/436] 1.5.0-debian-10-r54 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 8c56239ff9ac..af5df6e3b21e 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r53" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r54" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index de737a9b8c77..d4ca9144ed63 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r13/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r53` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r53/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r54` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r54/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 5bee93900a2dd3f277bb80864cb6e75fee40d3af Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 6 Jan 2022 13:15:19 +0000 Subject: [PATCH 256/436] 2.0.1-debian-10-r14 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 9674ef37ed09..11a185136d13 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r14" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index d4ca9144ed63..b460f0486630 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r13/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r14/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r54` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r54/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 8d1cb9cf0d7e7056c6714b45c32bc659f8efd00d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 7 Jan 2022 09:52:55 +0000 Subject: [PATCH 257/436] 1.5.0-debian-10-r55 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index af5df6e3b21e..a39a214acec3 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r54" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r55" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index b460f0486630..d539738e4de2 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r14/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r54` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r54/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r55` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r55/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 74720f4c7ae40e6624445c3e225f1a72be947fbf Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 7 Jan 2022 13:33:07 +0000 Subject: [PATCH 258/436] 2.0.1-debian-10-r15 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 11a185136d13..4817c165a88b 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r15" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index d539738e4de2..a4dd0e8e5209 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r14/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r15/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r55` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r55/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 1ae2991e13dbf8114c28b2087cd1f6a75b39ea2a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 7 Jan 2022 18:43:19 +0000 Subject: [PATCH 259/436] 2.0.1-debian-10-r16 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 4817c165a88b..90858cc1a338 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -13,15 +13,15 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "54517d6ea3a8f4d8f619db061b0c056aaafb6cf308ad0fe2c4357f41c007ec61 /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.0.1-0-linux-amd64-debian-10.tar.gz && \ - echo "3c657a1c078ba300cc22a838dbec35cf1a50a4b235a80292085eefbb24c4ad13 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.1-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.1-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.1-0-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.0.1-1-linux-amd64-debian-10.tar.gz && \ + echo "8523113be6def98126cbf13386e003cf7dcc8b022cdc5344ffff4eabd346f9f0 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.1-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.1-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.1-1-linux-amd64-debian-10.tar.gz RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r16" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index f22f0d2430ce..1b1be969c68a 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "3c657a1c078ba300cc22a838dbec35cf1a50a4b235a80292085eefbb24c4ad13", + "digest": "8523113be6def98126cbf13386e003cf7dcc8b022cdc5344ffff4eabd346f9f0", "distro": "debian-10", "type": "NAMI", - "version": "2.0.1-0" + "version": "2.0.1-1" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index a4dd0e8e5209..27712e08721c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r15/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r16/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r55` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r55/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 41618399fd654090e66e1232edae97b394795b6c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 9 Jan 2022 05:02:27 +0000 Subject: [PATCH 260/436] 1.5.0-debian-10-r56 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index a39a214acec3..e2ba3aa62ebc 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r55" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r56" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 27712e08721c..97513e5510bc 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r16/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r55` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r55/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r56` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r56/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 96567c8ac268c8809dda0e4dbb723af8a63ad1d9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 9 Jan 2022 08:02:56 +0000 Subject: [PATCH 261/436] 2.0.1-debian-10-r17 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 90858cc1a338..abe2fbf3f31d 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r17" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 97513e5510bc..3a271b15800e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r16/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r17/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r56` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r56/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From d2c7f7b21300a01fa5ed723ebd114c4354d198cc Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 10 Jan 2022 05:25:50 +0000 Subject: [PATCH 262/436] 1.5.0-debian-10-r57 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index e2ba3aa62ebc..2d6a0e9a0c46 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r56" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r57" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 3a271b15800e..bfc38e05bf7e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r17/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r56` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r56/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r57` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r57/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 7b91bd9a6ad6cb43c31aca7978121991b2dd373f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 10 Jan 2022 08:21:36 +0000 Subject: [PATCH 263/436] 2.0.1-debian-10-r18 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index abe2fbf3f31d..428ae0f2b678 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r18" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index bfc38e05bf7e..c83daae2d78d 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r17/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r18/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r57` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r57/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 9911e031395960146791658338aa821da220cab0 Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Hernandez Date: Mon, 10 Jan 2022 18:09:07 +0000 Subject: [PATCH 264/436] Update issue template --- .../.github/ISSUE_TEMPLATE.md | 40 +------------------ 1 file changed, 1 insertion(+), 39 deletions(-) diff --git a/bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE.md b/bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE.md index da2b4da33fde..91afdfd82d31 100644 --- a/bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE.md +++ b/bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE.md @@ -1,20 +1,3 @@ - - **Description** @@ -33,28 +16,7 @@ You do NOT have to include this information if this is a FEATURE REQUEST -**Additional information you deem important (e.g. issue happens only occasionally):** +**Additional information you deem important (e.g. issue happens only occasionally, environment details, etc.):** -**Version** - -- Output of `docker version`: - -``` -(paste your output here) -``` - -- Output of `docker info`: - -``` -(paste your output here) -``` - -- Output of `docker-compose version` (if applicable): - -``` -(paste your output here) -``` - -**Additional environment details (AWS, VirtualBox, Docker for MAC, physical, etc.):** From 38d1b0b10a91bac03c462dc395536ab384f7c784 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 11 Jan 2022 09:30:00 +0000 Subject: [PATCH 265/436] 2.0.2-debian-10-r0 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 428ae0f2b678..a36f796413ea 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -13,15 +13,15 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "54517d6ea3a8f4d8f619db061b0c056aaafb6cf308ad0fe2c4357f41c007ec61 /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.0.1-1-linux-amd64-debian-10.tar.gz && \ - echo "8523113be6def98126cbf13386e003cf7dcc8b022cdc5344ffff4eabd346f9f0 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.1-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.1-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.1-1-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.0.2-0-linux-amd64-debian-10.tar.gz && \ + echo "ade694d79f8082ad4e666b38d1d13dffcd5a24806178ea1c8a703bbbbfd0279b /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.2-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.2-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.2-0-linux-amd64-debian-10.tar.gz RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r0" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 1b1be969c68a..1fd6fe9a6ec0 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "8523113be6def98126cbf13386e003cf7dcc8b022cdc5344ffff4eabd346f9f0", + "digest": "ade694d79f8082ad4e666b38d1d13dffcd5a24806178ea1c8a703bbbbfd0279b", "distro": "debian-10", "type": "NAMI", - "version": "2.0.1-1" + "version": "2.0.2-0" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index c83daae2d78d..886a6d6fa5e8 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.1-debian-10-r18/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r0/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r57` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r57/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 78e14863c1391d64894f28c5fa31390693a75566 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 11 Jan 2022 10:46:01 +0000 Subject: [PATCH 266/436] 1.5.0-debian-10-r58 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 2d6a0e9a0c46..75f784e30d20 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -13,15 +13,15 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "54517d6ea3a8f4d8f619db061b0c056aaafb6cf308ad0fe2c4357f41c007ec61 /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-1-linux-amd64-debian-10.tar.gz && \ - echo "1204647977fe22befccd2767c57e75ad4c03bb39af614b9d049b9533e465070b /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-1-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-2-linux-amd64-debian-10.tar.gz && \ + echo "4c35ecce964ac931adc3bfd91a96852b1ce3169335ac8ca044f3d91d8a13f056 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-2-linux-amd64-debian-10.tar.gz RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r57" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r58" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 5f64275317c5..118a1f5e5e93 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "1204647977fe22befccd2767c57e75ad4c03bb39af614b9d049b9533e465070b", + "digest": "4c35ecce964ac931adc3bfd91a96852b1ce3169335ac8ca044f3d91d8a13f056", "distro": "debian-10", "type": "NAMI", - "version": "1.5.0-1" + "version": "1.5.0-2" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 886a6d6fa5e8..bbcb2f24aff8 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r0/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r57` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r57/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r58` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r58/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 15e7fe9d15699040a8dc5e541cc520cc20aacbd6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 12 Jan 2022 15:47:35 +0000 Subject: [PATCH 267/436] 1.5.0-debian-10-r59 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 75f784e30d20..872fddcaa755 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -9,10 +9,10 @@ ENV HOME="/opt/bitnami/jupyterhub-singleuser/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl gzip libc6 libgcc1 libstdc++6 procps tar wget -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz && \ - echo "54517d6ea3a8f4d8f619db061b0c056aaafb6cf308ad0fe2c4357f41c007ec61 /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-4-linux-amd64-debian-10.tar.gz && \ + echo "61a70180d7f3a90dbaa3f2f9786acff97bf7c0d3111d8568ab79d855a2d28182 /tmp/bitnami/pkg/cache/miniconda-4.10.3-4-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-4-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-4-linux-amd64-debian-10.tar.gz RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-2-linux-amd64-debian-10.tar.gz && \ echo "4c35ecce964ac931adc3bfd91a96852b1ce3169335ac8ca044f3d91d8a13f056 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r58" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r59" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 118a1f5e5e93..c3aa24c164c8 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "miniconda": { "arch": "amd64", - "digest": "54517d6ea3a8f4d8f619db061b0c056aaafb6cf308ad0fe2c4357f41c007ec61", + "digest": "61a70180d7f3a90dbaa3f2f9786acff97bf7c0d3111d8568ab79d855a2d28182", "distro": "debian-10", "type": "NAMI", - "version": "4.10.3-0" + "version": "4.10.3-4" } } \ No newline at end of file diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index bbcb2f24aff8..42d1d4b05479 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r0/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r58` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r58/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r59` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r59/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From bf163f05fd0e765c70e65c8604a31f08881d506c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 12 Jan 2022 21:46:51 +0000 Subject: [PATCH 268/436] 2.0.2-debian-10-r1 release --- .../2/debian-10/Dockerfile | 18 +++++++++--------- .../opt/bitnami/.bitnami_components.json | 8 ++++---- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index a36f796413ea..f7ced8dda4c6 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -9,19 +9,19 @@ ENV HOME="/opt/bitnami/jupyterhub-singleuser/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl gzip libc6 libgcc1 libstdc++6 procps tar wget -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz && \ - echo "54517d6ea3a8f4d8f619db061b0c056aaafb6cf308ad0fe2c4357f41c007ec61 /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-0-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.0.2-0-linux-amd64-debian-10.tar.gz && \ - echo "ade694d79f8082ad4e666b38d1d13dffcd5a24806178ea1c8a703bbbbfd0279b /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.2-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.2-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.2-0-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-4-linux-amd64-debian-10.tar.gz && \ + echo "61a70180d7f3a90dbaa3f2f9786acff97bf7c0d3111d8568ab79d855a2d28182 /tmp/bitnami/pkg/cache/miniconda-4.10.3-4-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-4-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-4-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.0.2-2-linux-amd64-debian-10.tar.gz && \ + echo "2aba2854cc761d9a64c15869d256a8729c9bac93d39be6ec16d79a8bf6a08fc2 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.2-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.2-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.2-2-linux-amd64-debian-10.tar.gz RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r1" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 1fd6fe9a6ec0..f6a736e05cb1 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,16 +1,16 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "ade694d79f8082ad4e666b38d1d13dffcd5a24806178ea1c8a703bbbbfd0279b", + "digest": "2aba2854cc761d9a64c15869d256a8729c9bac93d39be6ec16d79a8bf6a08fc2", "distro": "debian-10", "type": "NAMI", - "version": "2.0.2-0" + "version": "2.0.2-2" }, "miniconda": { "arch": "amd64", - "digest": "54517d6ea3a8f4d8f619db061b0c056aaafb6cf308ad0fe2c4357f41c007ec61", + "digest": "61a70180d7f3a90dbaa3f2f9786acff97bf7c0d3111d8568ab79d855a2d28182", "distro": "debian-10", "type": "NAMI", - "version": "4.10.3-0" + "version": "4.10.3-4" } } \ No newline at end of file diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 42d1d4b05479..c4d58cf14145 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r1/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r59` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r59/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 776b92892603dca36729a4e719e6c17162262634 Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Hernandez Date: Thu, 13 Jan 2022 15:21:19 +0000 Subject: [PATCH 269/436] Update CONTRIBUTING.md guidelines Signed-off-by: Carlos Rodriguez Hernandez --- bitnami/jupyter-base-notebook/CONTRIBUTING.md | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/bitnami/jupyter-base-notebook/CONTRIBUTING.md b/bitnami/jupyter-base-notebook/CONTRIBUTING.md index b4270435b0c6..4f5ce693ec65 100644 --- a/bitnami/jupyter-base-notebook/CONTRIBUTING.md +++ b/bitnami/jupyter-base-notebook/CONTRIBUTING.md @@ -17,6 +17,31 @@ When submitting a PR make sure that: - The title of the PR is clear enough. - If necessary, add information to the repository's `README.md`. +#### Sign Your Work + +The sign-off is a simple line at the end of the explanation for a commit. All commits needs to be signed. Your signature certifies that you wrote the patch or otherwise have the right to contribute the material. The rules are pretty simple, you only need to certify the guidelines from [developercertificate.org](https://developercertificate.org/). + +Then you just add a line to every git commit message: + + Signed-off-by: Joe Smith + +Use your real name (sorry, no pseudonyms or anonymous contributions.) + +If you set your `user.name` and `user.email` git configs, you can sign your commit automatically with `git commit -s`. + +Note: If your git config information is set properly then viewing the `git log` information for your commit will look something like this: + +``` +Author: Joe Smith +Date: Thu Feb 2 11:41:15 2018 -0800 + + Update README + + Signed-off-by: Joe Smith +``` + +Notice the `Author` and `Signed-off-by` lines match. If they don't your PR will be rejected by the automated DCO check. + ### PR Approval and Release Process 1. Changes are manually reviewed by Bitnami team members usually within a business day. From e381d7e650a013bc02236893b6c6e1864060a660 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 13 Jan 2022 16:15:18 +0000 Subject: [PATCH 270/436] 1.5.0-debian-10-r60 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 872fddcaa755..0b067938c853 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r59" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r60" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index c4d58cf14145..e33d46de1e4d 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r1/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r59` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r59/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r60` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r60/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 952adff1c599f3988781b47586ef59d797d49c8a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 13 Jan 2022 22:38:23 +0000 Subject: [PATCH 271/436] 2.0.2-debian-10-r2 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 12 +++++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index f7ced8dda4c6..7fc449f522c9 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -13,15 +13,17 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "61a70180d7f3a90dbaa3f2f9786acff97bf7c0d3111d8568ab79d855a2d28182 /tmp/bitnami/pkg/cache/miniconda-4.10.3-4-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-4-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-4-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.0.2-2-linux-amd64-debian-10.tar.gz && \ - echo "2aba2854cc761d9a64c15869d256a8729c9bac93d39be6ec16d79a8bf6a08fc2 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.2-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.2-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.2-2-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.0.2-3-linux-amd64-debian-10.tar.gz && \ + echo "d87bda8c0d2aca3ccf788b388acdbdacda0f8d1809adeb6a2121bca62eb313db /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.2-3-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.2-3-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.2-3-linux-amd64-debian-10.tar.gz +RUN apt-get update && apt-get upgrade -y && \ + rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r2" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index f6a736e05cb1..bce3be427b35 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "2aba2854cc761d9a64c15869d256a8729c9bac93d39be6ec16d79a8bf6a08fc2", + "digest": "d87bda8c0d2aca3ccf788b388acdbdacda0f8d1809adeb6a2121bca62eb313db", "distro": "debian-10", "type": "NAMI", - "version": "2.0.2-2" + "version": "2.0.2-3" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index e33d46de1e4d..cbc28bf02e6a 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r2/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r60` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r60/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 575dde288a03e31197f8315f7c43699b78ffe7d6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 14 Jan 2022 16:42:03 +0000 Subject: [PATCH 272/436] 1.5.0-debian-10-r61 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 4 +++- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 0b067938c853..8a9d359d93e7 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -17,11 +17,13 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "4c35ecce964ac931adc3bfd91a96852b1ce3169335ac8ca044f3d91d8a13f056 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-2-linux-amd64-debian-10.tar.gz +RUN apt-get update && apt-get upgrade -y && \ + rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r60" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r61" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index cbc28bf02e6a..1c4dd0725b64 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r2/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r60` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r60/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r61` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r61/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From bcaca671aed7ad642c533c95c4e7e704ffb60481 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 14 Jan 2022 22:56:29 +0000 Subject: [PATCH 273/436] 2.0.2-debian-10-r3 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 7fc449f522c9..2439b0e3ab3b 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r3" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 1c4dd0725b64..7049a8dede0a 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r3/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r61` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r61/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From ae45b37b6bb9cbd0c1f6b17a4851144c364ad8bd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 15 Jan 2022 17:02:05 +0000 Subject: [PATCH 274/436] 1.5.0-debian-10-r62 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 8a9d359d93e7..0531993feb14 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r61" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r62" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 7049a8dede0a..4ab0b3190291 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r3/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r61` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r61/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r62` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r62/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f098169071a5eeca31d0d5e4ba35953648a89002 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 15 Jan 2022 23:12:53 +0000 Subject: [PATCH 275/436] 2.0.2-debian-10-r4 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 2439b0e3ab3b..f1c446291c4b 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r4" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 4ab0b3190291..22e4b7d44d06 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r4/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r62` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r62/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From ddf18c359a5369ee24e657cc4f417bf0eeefc7f7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 16 Jan 2022 17:22:07 +0000 Subject: [PATCH 276/436] 1.5.0-debian-10-r63 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 0531993feb14..17a2931a36e3 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r62" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r63" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 22e4b7d44d06..2ecdb3bb76be 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r4/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r62` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r62/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r63` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r63/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 846796bc372e7f1f53552ecf2b88c94d1a88caad Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 16 Jan 2022 23:27:32 +0000 Subject: [PATCH 277/436] 2.0.2-debian-10-r5 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index f1c446291c4b..3cbfde38aa20 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r5" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 2ecdb3bb76be..7c14d2538387 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r5/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r63` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r63/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 151d7c832e158122d2d63eb58f03814c30fe9e1e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 17 Jan 2022 17:48:28 +0000 Subject: [PATCH 278/436] 1.5.0-debian-10-r64 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 17a2931a36e3..c8300b974d3f 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r63" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r64" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 7c14d2538387..ab718d2675b7 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r5/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r63` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r63/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r64` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r64/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 8e198f00dde2c64a8cf4506980c061eb1b8fd1c0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 18 Jan 2022 00:10:23 +0000 Subject: [PATCH 279/436] 2.0.2-debian-10-r6 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 3cbfde38aa20..ee36ba0ab864 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r6" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index ab718d2675b7..679e32882d35 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r5/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r6/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r64` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r64/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 8310527b472cf0ab8b13396416180e56f36d463c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 18 Jan 2022 18:32:45 +0000 Subject: [PATCH 280/436] 1.5.0-debian-10-r65 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index c8300b974d3f..2ee4fa30d4c6 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r64" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r65" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 679e32882d35..9ea5e7c97581 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r6/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r64` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r64/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r65` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r65/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From ddc461f7898f0e3ac781f9b234b054d8923cc1a6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 19 Jan 2022 00:26:20 +0000 Subject: [PATCH 281/436] 2.0.2-debian-10-r7 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index ee36ba0ab864..96847306e8d5 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r7" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 9ea5e7c97581..84bb0f245fd1 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r6/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r7/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r65` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r65/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From fb8c04af71a7f5eb7e3a7394bf6dee28993643b4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 19 Jan 2022 19:01:01 +0000 Subject: [PATCH 282/436] 1.5.0-debian-10-r66 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 2ee4fa30d4c6..997aeb99d102 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -9,10 +9,10 @@ ENV HOME="/opt/bitnami/jupyterhub-singleuser/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl gzip libc6 libgcc1 libstdc++6 procps tar wget -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-4-linux-amd64-debian-10.tar.gz && \ - echo "61a70180d7f3a90dbaa3f2f9786acff97bf7c0d3111d8568ab79d855a2d28182 /tmp/bitnami/pkg/cache/miniconda-4.10.3-4-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-4-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-4-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-5-linux-amd64-debian-10.tar.gz && \ + echo "2389592c9632d6934775010ef8233a9955f55dbd70222f8f9124ba95fac7b49a /tmp/bitnami/pkg/cache/miniconda-4.10.3-5-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-5-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-5-linux-amd64-debian-10.tar.gz RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-2-linux-amd64-debian-10.tar.gz && \ echo "4c35ecce964ac931adc3bfd91a96852b1ce3169335ac8ca044f3d91d8a13f056 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r65" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r66" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index c3aa24c164c8..5d4d951f5aa1 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "miniconda": { "arch": "amd64", - "digest": "61a70180d7f3a90dbaa3f2f9786acff97bf7c0d3111d8568ab79d855a2d28182", + "digest": "2389592c9632d6934775010ef8233a9955f55dbd70222f8f9124ba95fac7b49a", "distro": "debian-10", "type": "NAMI", - "version": "4.10.3-4" + "version": "4.10.3-5" } } \ No newline at end of file diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 84bb0f245fd1..31a0a1ad333c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r7/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r65` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r65/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r66` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r66/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 48b1234e4743ba141ba2db304ba288d7613a0c8f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 20 Jan 2022 01:28:35 +0000 Subject: [PATCH 283/436] 2.0.2-debian-10-r8 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 96847306e8d5..ede960c0ad40 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -9,10 +9,10 @@ ENV HOME="/opt/bitnami/jupyterhub-singleuser/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl gzip libc6 libgcc1 libstdc++6 procps tar wget -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-4-linux-amd64-debian-10.tar.gz && \ - echo "61a70180d7f3a90dbaa3f2f9786acff97bf7c0d3111d8568ab79d855a2d28182 /tmp/bitnami/pkg/cache/miniconda-4.10.3-4-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-4-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-4-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-5-linux-amd64-debian-10.tar.gz && \ + echo "2389592c9632d6934775010ef8233a9955f55dbd70222f8f9124ba95fac7b49a /tmp/bitnami/pkg/cache/miniconda-4.10.3-5-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-5-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-5-linux-amd64-debian-10.tar.gz RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.0.2-3-linux-amd64-debian-10.tar.gz && \ echo "d87bda8c0d2aca3ccf788b388acdbdacda0f8d1809adeb6a2121bca62eb313db /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.2-3-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.2-3-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r8" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index bce3be427b35..0c3567352dad 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "miniconda": { "arch": "amd64", - "digest": "61a70180d7f3a90dbaa3f2f9786acff97bf7c0d3111d8568ab79d855a2d28182", + "digest": "2389592c9632d6934775010ef8233a9955f55dbd70222f8f9124ba95fac7b49a", "distro": "debian-10", "type": "NAMI", - "version": "4.10.3-4" + "version": "4.10.3-5" } } \ No newline at end of file diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 31a0a1ad333c..a02ce6b626a3 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r7/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r8/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r66` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r66/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 5d41566cb1459f1b3b6ade971c6a4427d6854bf0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 20 Jan 2022 20:43:11 +0000 Subject: [PATCH 284/436] 1.5.0-debian-10-r67 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 997aeb99d102..d55079015663 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r66" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r67" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index a02ce6b626a3..475b184f4c52 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r8/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r66` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r66/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r67` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r67/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f3b4a9a69c3f16f63a38541d5a19e74a0627f754 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 21 Jan 2022 12:02:52 +0000 Subject: [PATCH 285/436] 1.5.0-debian-10-r68 release --- .../1/debian-10/Dockerfile | 18 +++++++++--------- .../opt/bitnami/.bitnami_components.json | 8 ++++---- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index d55079015663..384ae561fbe2 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -9,21 +9,21 @@ ENV HOME="/opt/bitnami/jupyterhub-singleuser/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl gzip libc6 libgcc1 libstdc++6 procps tar wget -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-5-linux-amd64-debian-10.tar.gz && \ - echo "2389592c9632d6934775010ef8233a9955f55dbd70222f8f9124ba95fac7b49a /tmp/bitnami/pkg/cache/miniconda-4.10.3-5-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-5-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-5-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-2-linux-amd64-debian-10.tar.gz && \ - echo "4c35ecce964ac931adc3bfd91a96852b1ce3169335ac8ca044f3d91d8a13f056 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-2-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-6-linux-amd64-debian-10.tar.gz && \ + echo "d0184441f6b2a4ae1ed629db8f31f5bcea024028a5db943fa57320cfd471162e /tmp/bitnami/pkg/cache/miniconda-4.10.3-6-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-6-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-6-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-3-linux-amd64-debian-10.tar.gz && \ + echo "48112fc2a86c0bb981e9ae4c40386e887f9b839b9103485f62a1fe77b5c205bf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-3-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-3-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-3-linux-amd64-debian-10.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r67" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r68" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 5d4d951f5aa1..a95d9854b0cb 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,16 +1,16 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "4c35ecce964ac931adc3bfd91a96852b1ce3169335ac8ca044f3d91d8a13f056", + "digest": "48112fc2a86c0bb981e9ae4c40386e887f9b839b9103485f62a1fe77b5c205bf", "distro": "debian-10", "type": "NAMI", - "version": "1.5.0-2" + "version": "1.5.0-3" }, "miniconda": { "arch": "amd64", - "digest": "2389592c9632d6934775010ef8233a9955f55dbd70222f8f9124ba95fac7b49a", + "digest": "d0184441f6b2a4ae1ed629db8f31f5bcea024028a5db943fa57320cfd471162e", "distro": "debian-10", "type": "NAMI", - "version": "4.10.3-5" + "version": "4.10.3-6" } } \ No newline at end of file diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 475b184f4c52..02b5bcfc4d34 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r8/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r67` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r67/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r68` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r68/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f0768dd3c3f2ae164b8c2fed704910708bc33535 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 21 Jan 2022 14:22:50 +0000 Subject: [PATCH 286/436] 2.1.0-debian-10-r0 release --- .../2/debian-10/Dockerfile | 18 +++++++++--------- .../opt/bitnami/.bitnami_components.json | 8 ++++---- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index ede960c0ad40..bad0eb304b1d 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -9,21 +9,21 @@ ENV HOME="/opt/bitnami/jupyterhub-singleuser/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl gzip libc6 libgcc1 libstdc++6 procps tar wget -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-5-linux-amd64-debian-10.tar.gz && \ - echo "2389592c9632d6934775010ef8233a9955f55dbd70222f8f9124ba95fac7b49a /tmp/bitnami/pkg/cache/miniconda-4.10.3-5-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-5-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-5-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.0.2-3-linux-amd64-debian-10.tar.gz && \ - echo "d87bda8c0d2aca3ccf788b388acdbdacda0f8d1809adeb6a2121bca62eb313db /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.2-3-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.2-3-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.0.2-3-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-6-linux-amd64-debian-10.tar.gz && \ + echo "d0184441f6b2a4ae1ed629db8f31f5bcea024028a5db943fa57320cfd471162e /tmp/bitnami/pkg/cache/miniconda-4.10.3-6-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-6-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-6-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.1.0-0-linux-amd64-debian-10.tar.gz && \ + echo "1af10a9cc12ee0a190317920ff2dc720aa6566315650ff4ff3b0fd9b1322f0e1 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.0-0-linux-amd64-debian-10.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.1.0-debian-10-r0" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 0c3567352dad..a4068edfc302 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,16 +1,16 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "d87bda8c0d2aca3ccf788b388acdbdacda0f8d1809adeb6a2121bca62eb313db", + "digest": "1af10a9cc12ee0a190317920ff2dc720aa6566315650ff4ff3b0fd9b1322f0e1", "distro": "debian-10", "type": "NAMI", - "version": "2.0.2-3" + "version": "2.1.0-0" }, "miniconda": { "arch": "amd64", - "digest": "2389592c9632d6934775010ef8233a9955f55dbd70222f8f9124ba95fac7b49a", + "digest": "d0184441f6b2a4ae1ed629db8f31f5bcea024028a5db943fa57320cfd471162e", "distro": "debian-10", "type": "NAMI", - "version": "4.10.3-5" + "version": "4.10.3-6" } } \ No newline at end of file diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 02b5bcfc4d34..9494667b18ad 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.0.2`, `2.0.2-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.0.2-debian-10-r8/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.0`, `2.1.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.0-debian-10-r0/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r68` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r68/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 867ea067881226d6a4583c8e26ba4e283bda59b7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 22 Jan 2022 12:28:02 +0000 Subject: [PATCH 287/436] 1.5.0-debian-10-r69 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 384ae561fbe2..4d9ff3891162 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r68" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r69" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 9494667b18ad..9dcb23afa047 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.0`, `2.1.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.0-debian-10-r0/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r68` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r68/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r69` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r69/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f6c47cca521eb8b5dcc6a727a63c135b94726e06 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 22 Jan 2022 14:38:32 +0000 Subject: [PATCH 288/436] 2.1.0-debian-10-r1 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index bad0eb304b1d..80079d829cb3 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.0-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.1.0-debian-10-r1" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 9dcb23afa047..9ddfb0683946 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.0`, `2.1.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.0-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.0`, `2.1.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.0-debian-10-r1/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r69` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r69/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From ebac9707d0d818838e24e93a575731a490708ad8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 23 Jan 2022 12:51:24 +0000 Subject: [PATCH 289/436] 1.5.0-debian-10-r70 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 4d9ff3891162..66662c6ed270 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r69" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r70" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 9ddfb0683946..065d9acedd03 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.0`, `2.1.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.0-debian-10-r1/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r69` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r69/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r70` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r70/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 775fe9ef7487c6de7b0f67ddce298b80d40285a9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 23 Jan 2022 14:56:32 +0000 Subject: [PATCH 290/436] 2.1.0-debian-10-r2 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 80079d829cb3..3e9b581b94aa 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.0-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.1.0-debian-10-r2" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 065d9acedd03..251d79a15671 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.0`, `2.1.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.0-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.0`, `2.1.0-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.0-debian-10-r2/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r70` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r70/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From bc5d87537d9eb89859c36e78a8edc7041b3abf5a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 24 Jan 2022 21:40:42 +0000 Subject: [PATCH 291/436] 2.1.0-debian-10-r3 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 3e9b581b94aa..edc1edbfec70 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.0-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.1.0-debian-10-r3" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 251d79a15671..c2d6308ba10f 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.0`, `2.1.0-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.0-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.0`, `2.1.0-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.0-debian-10-r3/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r70` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r70/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f95e330e84f41e7dfdc5c673f2919bf7e3514558 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 25 Jan 2022 02:15:44 +0000 Subject: [PATCH 292/436] 1.5.0-debian-10-r71 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 66662c6ed270..c1673aaa4a70 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r70" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r71" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index c2d6308ba10f..e9b0fd18ba0f 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.0`, `2.1.0-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.0-debian-10-r3/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r70` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r70/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r71` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r71/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From cf2146f81ecf47f74a679815b9c0acc466981083 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 25 Jan 2022 08:25:15 +0000 Subject: [PATCH 293/436] 2.1.0-debian-10-r4 release --- .../2/debian-10/Dockerfile | 18 +++++++++--------- .../opt/bitnami/.bitnami_components.json | 8 ++++---- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index edc1edbfec70..08a3ca31c3ac 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -9,21 +9,21 @@ ENV HOME="/opt/bitnami/jupyterhub-singleuser/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl gzip libc6 libgcc1 libstdc++6 procps tar wget -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-6-linux-amd64-debian-10.tar.gz && \ - echo "d0184441f6b2a4ae1ed629db8f31f5bcea024028a5db943fa57320cfd471162e /tmp/bitnami/pkg/cache/miniconda-4.10.3-6-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-6-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-6-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.1.0-0-linux-amd64-debian-10.tar.gz && \ - echo "1af10a9cc12ee0a190317920ff2dc720aa6566315650ff4ff3b0fd9b1322f0e1 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.0-0-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz && \ + echo "2734bf172f6780c4c95ca21b089388bebc06187a9cae6aa7d9c47c034d9ca67b /tmp/bitnami/pkg/cache/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.1.0-1-linux-amd64-debian-10.tar.gz && \ + echo "ee2184687cb83561cdf14d13fae70770224c7bab585c93237181d3fabe2465df /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.0-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.0-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.0-1-linux-amd64-debian-10.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.0-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.1.0-debian-10-r4" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index a4068edfc302..aeed29f0352f 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,16 +1,16 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "1af10a9cc12ee0a190317920ff2dc720aa6566315650ff4ff3b0fd9b1322f0e1", + "digest": "ee2184687cb83561cdf14d13fae70770224c7bab585c93237181d3fabe2465df", "distro": "debian-10", "type": "NAMI", - "version": "2.1.0-0" + "version": "2.1.0-1" }, "miniconda": { "arch": "amd64", - "digest": "d0184441f6b2a4ae1ed629db8f31f5bcea024028a5db943fa57320cfd471162e", + "digest": "2734bf172f6780c4c95ca21b089388bebc06187a9cae6aa7d9c47c034d9ca67b", "distro": "debian-10", "type": "NAMI", - "version": "4.10.3-6" + "version": "4.10.3-7" } } \ No newline at end of file diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index e9b0fd18ba0f..2dc7fc2e034f 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.0`, `2.1.0-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.0-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.0`, `2.1.0-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.0-debian-10-r4/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r71` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r71/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 6c8ea5ca9088aeb078ddcb0648c45f45554e8134 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 25 Jan 2022 16:31:54 +0000 Subject: [PATCH 294/436] 2.1.1-debian-10-r0 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 08a3ca31c3ac..3c68feea0e39 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -13,17 +13,17 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "2734bf172f6780c4c95ca21b089388bebc06187a9cae6aa7d9c47c034d9ca67b /tmp/bitnami/pkg/cache/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.1.0-1-linux-amd64-debian-10.tar.gz && \ - echo "ee2184687cb83561cdf14d13fae70770224c7bab585c93237181d3fabe2465df /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.0-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.0-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.0-1-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.1.1-0-linux-amd64-debian-10.tar.gz && \ + echo "d5ada31351e1bce9e71cc59aab554e68766b5385dc74edcdc6bd3e9566c1a23d /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-0-linux-amd64-debian-10.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.0-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r0" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index aeed29f0352f..e7e7401ae2e6 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "ee2184687cb83561cdf14d13fae70770224c7bab585c93237181d3fabe2465df", + "digest": "d5ada31351e1bce9e71cc59aab554e68766b5385dc74edcdc6bd3e9566c1a23d", "distro": "debian-10", "type": "NAMI", - "version": "2.1.0-1" + "version": "2.1.1-0" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 2dc7fc2e034f..f49883084e5c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.0`, `2.1.0-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.0-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r0/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r71` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r71/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 6d51d7706656f2a4de5eb3dfe7f83d380dd9c9d3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 26 Jan 2022 03:38:06 +0000 Subject: [PATCH 295/436] 1.5.0-debian-10-r72 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index c1673aaa4a70..67309e0b2e52 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -9,10 +9,10 @@ ENV HOME="/opt/bitnami/jupyterhub-singleuser/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl gzip libc6 libgcc1 libstdc++6 procps tar wget -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-6-linux-amd64-debian-10.tar.gz && \ - echo "d0184441f6b2a4ae1ed629db8f31f5bcea024028a5db943fa57320cfd471162e /tmp/bitnami/pkg/cache/miniconda-4.10.3-6-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-6-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-6-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz && \ + echo "2734bf172f6780c4c95ca21b089388bebc06187a9cae6aa7d9c47c034d9ca67b /tmp/bitnami/pkg/cache/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-3-linux-amd64-debian-10.tar.gz && \ echo "48112fc2a86c0bb981e9ae4c40386e887f9b839b9103485f62a1fe77b5c205bf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-3-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-3-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r71" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r72" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index a95d9854b0cb..24a0f31671e6 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "miniconda": { "arch": "amd64", - "digest": "d0184441f6b2a4ae1ed629db8f31f5bcea024028a5db943fa57320cfd471162e", + "digest": "2734bf172f6780c4c95ca21b089388bebc06187a9cae6aa7d9c47c034d9ca67b", "distro": "debian-10", "type": "NAMI", - "version": "4.10.3-6" + "version": "4.10.3-7" } } \ No newline at end of file diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f49883084e5c..f387b5328eff 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r0/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r71` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r71/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r72` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r72/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From c3f3f8813b1c982a5313fa5a928c0c1a91928c7d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 26 Jan 2022 16:49:03 +0000 Subject: [PATCH 296/436] 2.1.1-debian-10-r1 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 3c68feea0e39..5a8086361fbf 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r1" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f387b5328eff..d70a66b09873 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r1/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r72` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r72/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 9ac83c2a57a257ed712c5a0462ef185c44322f15 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 27 Jan 2022 03:58:03 +0000 Subject: [PATCH 297/436] 1.5.0-debian-10-r73 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 67309e0b2e52..3f6718aa3a7c 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r72" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r73" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index d70a66b09873..0a5c5386c680 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r1/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r72` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r72/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r73` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r73/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 149e7769e19818141f4e517315e8b42ea65755b1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 27 Jan 2022 17:04:40 +0000 Subject: [PATCH 298/436] 2.1.1-debian-10-r2 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 5a8086361fbf..78477f7baf1e 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r2" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 0a5c5386c680..95b68c7e41f3 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r2/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r73` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r73/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From dc52193b100fe5f6101a942f674eca54812e2eab Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 28 Jan 2022 04:26:29 +0000 Subject: [PATCH 299/436] 1.5.0-debian-10-r74 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 3f6718aa3a7c..26160c0a05f2 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r73" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r74" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 95b68c7e41f3..0fb5d03fbc02 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r2/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r73` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r73/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r74` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r74/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From b3f5c15a675a705dd006a7ca01680dc27f2c9765 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 28 Jan 2022 20:22:52 +0000 Subject: [PATCH 300/436] 2.1.1-debian-10-r3 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 78477f7baf1e..85b9aa81b55f 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r3" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 0fb5d03fbc02..f29f598c95bc 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r3/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r74` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r74/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From b40e052caf6008b36b4f15995fba890bc3894230 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 29 Jan 2022 05:01:12 +0000 Subject: [PATCH 301/436] 1.5.0-debian-10-r75 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 26160c0a05f2..fff343ecdf29 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r74" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r75" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f29f598c95bc..4a89a1ece5cc 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r3/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r74` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r74/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r75` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r75/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 0f234d75670bb4c5dbb7231cfc9c4a010ca49353 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 29 Jan 2022 20:38:44 +0000 Subject: [PATCH 302/436] 2.1.1-debian-10-r4 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 85b9aa81b55f..113bf13174d6 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r4" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 4a89a1ece5cc..eb32f7707346 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r4/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r75` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r75/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 64e89eeccb2f52573b69f747666bd7e95050fa32 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 30 Jan 2022 05:21:56 +0000 Subject: [PATCH 303/436] 1.5.0-debian-10-r76 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index fff343ecdf29..492c308190fb 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r75" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r76" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index eb32f7707346..d3744333f8c4 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r4/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r75` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r75/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r76` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r76/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From daa37316150ead192f25503e06a86dd38a8575c2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 31 Jan 2022 12:38:13 +0000 Subject: [PATCH 304/436] 1.5.0-debian-10-r77 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 492c308190fb..81c53e5482c5 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r76" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r77" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index d3744333f8c4..6515a21357a5 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r4/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r76` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r76/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r77` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r77/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 41b0f260bd1f2092d0756519714b6821b811eeff Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 31 Jan 2022 14:07:24 +0000 Subject: [PATCH 305/436] 2.1.1-debian-10-r5 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 113bf13174d6..2c0e405b7d7b 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r5" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 6515a21357a5..1e3da2c4216e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r5/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r77` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r77/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 1a690cb865e9faed8943862b7db695f324d96400 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 1 Feb 2022 13:01:27 +0000 Subject: [PATCH 306/436] 1.5.0-debian-10-r78 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 81c53e5482c5..13b4b596c694 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r77" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r78" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 1e3da2c4216e..0ddf336b1d9e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r5/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r77` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r77/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r78` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r78/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 55d61156253c4afc6273153f682aa24c903415b3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 1 Feb 2022 14:29:05 +0000 Subject: [PATCH 307/436] 2.1.1-debian-10-r6 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 2c0e405b7d7b..e4cf1b1960ac 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r6" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 0ddf336b1d9e..99891d6f0777 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r5/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r6/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r78` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r78/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 1b686cbab9a6d3a9e744e0168dd394b69317a4c6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 2 Feb 2022 13:25:30 +0000 Subject: [PATCH 308/436] 1.5.0-debian-10-r79 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 13b4b596c694..37fa19d322bc 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r78" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r79" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 99891d6f0777..a9a07c933431 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r6/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r78` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r78/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r79` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r79/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From e15b1ab880a440c562f3e9e4b4779abe953af52d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 2 Feb 2022 14:44:28 +0000 Subject: [PATCH 309/436] 2.1.1-debian-10-r7 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index e4cf1b1960ac..18ccd6ab72cb 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r7" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index a9a07c933431..8660973ef41f 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r6/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r7/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r79` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r79/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 7f9fed75d24bbf076ed0b4e9bbfe2b2aafe4cbe9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 3 Feb 2022 13:51:05 +0000 Subject: [PATCH 310/436] 1.5.0-debian-10-r80 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 37fa19d322bc..2f1ae702a9fe 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r79" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r80" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 8660973ef41f..297fc09c47f2 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r7/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r79` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r79/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r80` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r80/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From c196d451abf66911fc99a45aa89077e2879a3a4c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 3 Feb 2022 15:04:08 +0000 Subject: [PATCH 311/436] 2.1.1-debian-10-r8 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 18ccd6ab72cb..603cf45276d2 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r8" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 297fc09c47f2..602427d780a0 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r7/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r8/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r80` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r80/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 92565fdfa3deafb32766650fc9ba93138e3773d4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 4 Feb 2022 20:24:51 +0000 Subject: [PATCH 312/436] 1.5.0-debian-10-r81 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 2f1ae702a9fe..459036aea7ef 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r80" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r81" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 602427d780a0..a21c14f9529b 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r8/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r80` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r80/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r81` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r81/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From c578eda24dfa7357b9df509dfb05d5095496cc8a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 4 Feb 2022 20:38:35 +0000 Subject: [PATCH 313/436] 2.1.1-debian-10-r9 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 603cf45276d2..c4e968417f9c 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r9" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index a21c14f9529b..72736a92a0f8 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r8/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r9/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r81` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r81/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From b1eedf074e580192d9f60bcf392ec09e09bc1701 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 5 Feb 2022 20:51:37 +0000 Subject: [PATCH 314/436] 1.5.0-debian-10-r82 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 459036aea7ef..b518685be4e0 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r81" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r82" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 72736a92a0f8..0b6c8645e51e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r9/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r81` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r81/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r82` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r82/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 5366c14570ea3797f5a0ace9ca29ad5ecce385be Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 5 Feb 2022 21:04:58 +0000 Subject: [PATCH 315/436] 2.1.1-debian-10-r10 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index c4e968417f9c..1ed207a66fa1 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r10" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 0b6c8645e51e..f3a9c660ebed 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r9/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r10/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r82` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r82/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From cc2ee2778050b2445bc511d776a199be8fff581a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 6 Feb 2022 21:14:05 +0000 Subject: [PATCH 316/436] 1.5.0-debian-10-r83 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index b518685be4e0..f2df3a7d0665 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r82" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r83" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f3a9c660ebed..c8b719c5b9ca 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r10/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r82` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r82/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r83` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r83/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 18d561e1b0c112337895c5614735a86a10ab683b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 6 Feb 2022 21:28:19 +0000 Subject: [PATCH 317/436] 2.1.1-debian-10-r11 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 1ed207a66fa1..b6580c3b3af5 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r11" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index c8b719c5b9ca..7f841b0253c3 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r10/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r11/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r83` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r83/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 4064e8d300f72c1734ec0ea7a64caee1166a40ad Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Hernandez Date: Mon, 7 Feb 2022 14:01:59 +0000 Subject: [PATCH 318/436] Change issue/bug template Signed-off-by: Carlos Rodriguez Hernandez --- .../.github/ISSUE_TEMPLATE.md | 22 ---------- .../.github/ISSUE_TEMPLATE/bug_report.yml | 41 +++++++++++++++++++ .../.github/ISSUE_TEMPLATE/config.yml | 1 + .../ISSUE_TEMPLATE/feature_request.yml | 29 +++++++++++++ 4 files changed, 71 insertions(+), 22 deletions(-) delete mode 100644 bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE.md create mode 100644 bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE/config.yml create mode 100644 bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE/feature_request.yml diff --git a/bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE.md b/bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 91afdfd82d31..000000000000 --- a/bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,22 +0,0 @@ -**Description** - - - -**Steps to reproduce the issue:** - -1. [First Step] -2. [Second Step] -3. [and so on...] - -**Describe the results you received:** - - - -**Describe the results you expected:** - - - -**Additional information you deem important (e.g. issue happens only occasionally, environment details, etc.):** - - - diff --git a/bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE/bug_report.yml b/bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 000000000000..658fc40d2d6e --- /dev/null +++ b/bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,41 @@ +name: 🐞 Bug +description: Create a report to help us improve +body: + - type: markdown + attributes: + value: | + Thank you for reporting an issue. Before you open the bug report please review the README file present in the root of this repository. + + Please fill in as much of the following form as you're able. + - type: input + attributes: + label: Name and Version + description: Name and version of the affected container image + placeholder: bitnami/wordpress:1.2.3 + validations: + required: true + - type: textarea + attributes: + label: What steps will reproduce the bug? + description: Enter details about your bug. + placeholder: | + 1. In this environment... + 2. With this config... + 3. Run '...' + 4. See error... + validations: + required: true + - type: textarea + attributes: + label: What is the expected behavior? + description: If possible please provide textual output instead of screenshots. + - type: textarea + attributes: + label: What do you see instead? + description: If possible please provide textual output instead of screenshots. + validations: + required: true + - type: textarea + attributes: + label: Additional information + description: Tell us anything else you think we should know. diff --git a/bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE/config.yml b/bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000000..3ba13e0cec6c --- /dev/null +++ b/bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false diff --git a/bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE/feature_request.yml b/bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 000000000000..7c812014aa08 --- /dev/null +++ b/bitnami/jupyter-base-notebook/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,29 @@ +name: "\U0001F680 Feature request" +description: Suggest an idea for this project +body: + - type: markdown + attributes: + value: | + Thank you for suggesting an idea to improve this Bitnami container image. + Please fill in as much of the following form as you're able. + - type: input + attributes: + label: Name and Version + description: Name and version of the affected container image + placeholder: bitnami/wordpress:1.2.3 + validations: + required: true + - type: textarea + attributes: + label: What is the problem this feature will solve? + validations: + required: true + - type: textarea + attributes: + label: What is the feature you are proposing to solve the problem? + description: Describe the requests. If you already have something in mind... PRs are welcome! + validations: + required: true + - type: textarea + attributes: + label: What alternatives have you considered? From f97a689500363ca0af072611d279afa9f1335665 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 7 Feb 2022 21:41:42 +0000 Subject: [PATCH 319/436] 1.5.0-debian-10-r84 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index f2df3a7d0665..0f513c929750 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r83" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r84" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 7f841b0253c3..ef6905227c8d 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r11/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r83` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r83/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r84` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r84/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 03aacb849d1fb9b7ceeb8596277371bfced13d9f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 7 Feb 2022 21:54:04 +0000 Subject: [PATCH 320/436] 2.1.1-debian-10-r12 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index b6580c3b3af5..9492baa0134b 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r12" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index ef6905227c8d..516ed0190130 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r11/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r12/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r84` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r84/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f45fffb75940862e6f8029d40589ffb3d8015d2e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 8 Feb 2022 22:07:09 +0000 Subject: [PATCH 321/436] 1.5.0-debian-10-r85 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 0f513c929750..f735a65f1887 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r84" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r85" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 516ed0190130..cd3daec08788 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r12/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r84` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r84/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r85` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r85/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f322354d98594daba893443fe78a9fcc434e7657 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 8 Feb 2022 22:21:10 +0000 Subject: [PATCH 322/436] 2.1.1-debian-10-r13 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 9492baa0134b..25063772c1d6 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r13" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index cd3daec08788..7a1d1346b595 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r12/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r13/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r85` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r85/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 5425656bc824f623270cf9a6cf785c1148c92a78 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 9 Feb 2022 10:17:37 +0000 Subject: [PATCH 323/436] 1.5.0-debian-10-r86 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index f735a65f1887..bbe5889803bf 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -13,17 +13,17 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "2734bf172f6780c4c95ca21b089388bebc06187a9cae6aa7d9c47c034d9ca67b /tmp/bitnami/pkg/cache/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-3-linux-amd64-debian-10.tar.gz && \ - echo "48112fc2a86c0bb981e9ae4c40386e887f9b839b9103485f62a1fe77b5c205bf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-3-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-3-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-3-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-30-linux-amd64-debian-10.tar.gz && \ + echo "14960357664a2c1c11f9771262f0f83b958bc5fdfc3931f84d0222fe03039fdb /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-30-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-30-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-30-linux-amd64-debian-10.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r85" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r86" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 24a0f31671e6..6b22cc1689ed 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "48112fc2a86c0bb981e9ae4c40386e887f9b839b9103485f62a1fe77b5c205bf", + "digest": "14960357664a2c1c11f9771262f0f83b958bc5fdfc3931f84d0222fe03039fdb", "distro": "debian-10", "type": "NAMI", - "version": "1.5.0-3" + "version": "1.5.0-30" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 7a1d1346b595..25c2130534e5 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r13/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r85` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r85/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r86` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r86/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 70504f30d41135934892c27aa7fd4a52985222ab Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 9 Feb 2022 22:40:31 +0000 Subject: [PATCH 324/436] 2.1.1-debian-10-r14 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 25063772c1d6..b18d525b933b 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r14" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 25c2130534e5..cb176756eea2 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r13/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r14/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r86` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r86/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From ba024b1b87a519d632a3d046b9c6d8a13cab3247 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 10 Feb 2022 10:38:18 +0000 Subject: [PATCH 325/436] 1.5.0-debian-10-r87 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index bbe5889803bf..e566be97ca87 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r86" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r87" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index cb176756eea2..9d6df2652cec 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r14/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r86` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r86/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r87` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r87/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 58b9d1f8acbb6ec74824fc8a20175b07d456d187 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 11 Feb 2022 13:04:15 +0000 Subject: [PATCH 326/436] 1.5.0-debian-10-r88 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index e566be97ca87..e1dc2427d8eb 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -9,10 +9,10 @@ ENV HOME="/opt/bitnami/jupyterhub-singleuser/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl gzip libc6 libgcc1 libstdc++6 procps tar wget -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz && \ - echo "2734bf172f6780c4c95ca21b089388bebc06187a9cae6aa7d9c47c034d9ca67b /tmp/bitnami/pkg/cache/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-8-linux-amd64-debian-10.tar.gz && \ + echo "b12c987e9637c0ccb1e0f12977b8423b6456e91921c2d9befa9631a7d4dd88b6 /tmp/bitnami/pkg/cache/miniconda-4.10.3-8-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-8-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-8-linux-amd64-debian-10.tar.gz RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-30-linux-amd64-debian-10.tar.gz && \ echo "14960357664a2c1c11f9771262f0f83b958bc5fdfc3931f84d0222fe03039fdb /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-30-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-30-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r87" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r88" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 6b22cc1689ed..914ae59c6002 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "miniconda": { "arch": "amd64", - "digest": "2734bf172f6780c4c95ca21b089388bebc06187a9cae6aa7d9c47c034d9ca67b", + "digest": "b12c987e9637c0ccb1e0f12977b8423b6456e91921c2d9befa9631a7d4dd88b6", "distro": "debian-10", "type": "NAMI", - "version": "4.10.3-7" + "version": "4.10.3-8" } } \ No newline at end of file diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 9d6df2652cec..76ac762119bb 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r14/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r87` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r87/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r88` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r88/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 4a8ba17200342583ab32c45c22c4036fc9e02996 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 12 Feb 2022 00:29:28 +0000 Subject: [PATCH 327/436] 2.1.1-debian-10-r15 release --- .../2/debian-10/Dockerfile | 18 +++++++++--------- .../opt/bitnami/.bitnami_components.json | 8 ++++---- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index b18d525b933b..236862cc91c5 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -9,21 +9,21 @@ ENV HOME="/opt/bitnami/jupyterhub-singleuser/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl gzip libc6 libgcc1 libstdc++6 procps tar wget -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz && \ - echo "2734bf172f6780c4c95ca21b089388bebc06187a9cae6aa7d9c47c034d9ca67b /tmp/bitnami/pkg/cache/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-7-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.1.1-0-linux-amd64-debian-10.tar.gz && \ - echo "d5ada31351e1bce9e71cc59aab554e68766b5385dc74edcdc6bd3e9566c1a23d /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-0-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-8-linux-amd64-debian-10.tar.gz && \ + echo "b12c987e9637c0ccb1e0f12977b8423b6456e91921c2d9befa9631a7d4dd88b6 /tmp/bitnami/pkg/cache/miniconda-4.10.3-8-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-8-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-8-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.1.1-1-linux-amd64-debian-10.tar.gz && \ + echo "4facdc5b020f4b8b512e426a768222d1eb666963ca59192fb3a6b8f793f0c051 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-1-linux-amd64-debian-10.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r15" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index e7e7401ae2e6..623c82af0dd5 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,16 +1,16 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "d5ada31351e1bce9e71cc59aab554e68766b5385dc74edcdc6bd3e9566c1a23d", + "digest": "4facdc5b020f4b8b512e426a768222d1eb666963ca59192fb3a6b8f793f0c051", "distro": "debian-10", "type": "NAMI", - "version": "2.1.1-0" + "version": "2.1.1-1" }, "miniconda": { "arch": "amd64", - "digest": "2734bf172f6780c4c95ca21b089388bebc06187a9cae6aa7d9c47c034d9ca67b", + "digest": "b12c987e9637c0ccb1e0f12977b8423b6456e91921c2d9befa9631a7d4dd88b6", "distro": "debian-10", "type": "NAMI", - "version": "4.10.3-7" + "version": "4.10.3-8" } } \ No newline at end of file diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 76ac762119bb..5f4dbffd0a6a 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r14/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r15/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r88` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r88/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 146d1b281c7e7e30d2b399079d2b39ad0f81a46f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 12 Feb 2022 01:29:07 +0000 Subject: [PATCH 328/436] 1.5.0-debian-10-r89 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index e1dc2427d8eb..2f53d834e0ef 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -13,17 +13,17 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "b12c987e9637c0ccb1e0f12977b8423b6456e91921c2d9befa9631a7d4dd88b6 /tmp/bitnami/pkg/cache/miniconda-4.10.3-8-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-8-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-8-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-30-linux-amd64-debian-10.tar.gz && \ - echo "14960357664a2c1c11f9771262f0f83b958bc5fdfc3931f84d0222fe03039fdb /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-30-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-30-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-30-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-31-linux-amd64-debian-10.tar.gz && \ + echo "2402aace38c8d5e7a9b90817197aeacbe96f274d8786ee0b4e5f309547b3bbb9 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-31-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-31-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-31-linux-amd64-debian-10.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r88" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r89" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 914ae59c6002..9306dd43cb92 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "14960357664a2c1c11f9771262f0f83b958bc5fdfc3931f84d0222fe03039fdb", + "digest": "2402aace38c8d5e7a9b90817197aeacbe96f274d8786ee0b4e5f309547b3bbb9", "distro": "debian-10", "type": "NAMI", - "version": "1.5.0-30" + "version": "1.5.0-31" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 5f4dbffd0a6a..f23b0e20bdb9 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r15/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r88` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r88/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r89` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r89/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From d865522ece64738b8e0d4af5482d5d9289514cf0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 13 Feb 2022 00:45:39 +0000 Subject: [PATCH 329/436] 2.1.1-debian-10-r16 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 236862cc91c5..905a01473d9e 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r16" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f23b0e20bdb9..9997a0b3e914 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r15/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r16/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r89` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r89/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 24752747c7d66cea016c215a0dac0392ce682dc4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 13 Feb 2022 01:51:48 +0000 Subject: [PATCH 330/436] 1.5.0-debian-10-r90 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 2f53d834e0ef..2837e6091914 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r89" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r90" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 9997a0b3e914..5db940c52c2c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r16/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r89` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r89/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r90` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r90/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From d8dfaf6015b527157f4257faf18646bf62800a1a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 14 Feb 2022 01:00:19 +0000 Subject: [PATCH 331/436] 2.1.1-debian-10-r17 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 905a01473d9e..186fcbb924fb 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r17" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 5db940c52c2c..9eab701f50e2 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r16/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r17/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r90` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r90/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 50add578f1e4a5a6048739fb05cf1b893b1f7be3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 14 Feb 2022 02:15:07 +0000 Subject: [PATCH 332/436] 1.5.0-debian-10-r91 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 2837e6091914..2a74626e46a9 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r90" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r91" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 9eab701f50e2..27fb75cc5e1c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r17/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r90` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r90/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r91` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r91/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From ec887dbd07ce7244d2fbf1bf583eadcd859dfd78 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 15 Feb 2022 01:16:14 +0000 Subject: [PATCH 333/436] 2.1.1-debian-10-r18 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 186fcbb924fb..562a4a7d8bbb 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r18" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 27fb75cc5e1c..93be8bc0c0a7 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r17/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r18/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r91` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r91/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 9e34abc322af025cd33d1b4bd8f421b30df56e5b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 15 Feb 2022 02:40:45 +0000 Subject: [PATCH 334/436] 1.5.0-debian-10-r92 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 2a74626e46a9..55f8699ae38b 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r91" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r92" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 93be8bc0c0a7..a94fd2426f08 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r18/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r91` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r91/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r92` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r92/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 22181012be0574f4a3da431d9915d311e5d16ccd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 16 Feb 2022 13:32:51 +0000 Subject: [PATCH 335/436] 2.1.1-debian-10-r19 release --- .../2/debian-10/Dockerfile | 18 +++++++++--------- .../opt/bitnami/.bitnami_components.json | 8 ++++---- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 562a4a7d8bbb..8be4f07db6a4 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -9,21 +9,21 @@ ENV HOME="/opt/bitnami/jupyterhub-singleuser/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl gzip libc6 libgcc1 libstdc++6 procps tar wget -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-8-linux-amd64-debian-10.tar.gz && \ - echo "b12c987e9637c0ccb1e0f12977b8423b6456e91921c2d9befa9631a7d4dd88b6 /tmp/bitnami/pkg/cache/miniconda-4.10.3-8-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-8-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-8-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.1.1-1-linux-amd64-debian-10.tar.gz && \ - echo "4facdc5b020f4b8b512e426a768222d1eb666963ca59192fb3a6b8f793f0c051 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-1-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.11.0-0-linux-amd64-debian-10.tar.gz && \ + echo "3c671cf31696ec6e7971de5ece2257d05a6555d29eac464765fa842e5db705bf /tmp/bitnami/pkg/cache/miniconda-4.11.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.11.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/miniconda-4.11.0-0-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.1.1-2-linux-amd64-debian-10.tar.gz && \ + echo "17f99ea556f96484249ea74b061ea7970e89b5fe891c32f195acb5f893162d74 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-2-linux-amd64-debian-10.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r19" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 623c82af0dd5..6f6b91f81001 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,16 +1,16 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "4facdc5b020f4b8b512e426a768222d1eb666963ca59192fb3a6b8f793f0c051", + "digest": "17f99ea556f96484249ea74b061ea7970e89b5fe891c32f195acb5f893162d74", "distro": "debian-10", "type": "NAMI", - "version": "2.1.1-1" + "version": "2.1.1-2" }, "miniconda": { "arch": "amd64", - "digest": "b12c987e9637c0ccb1e0f12977b8423b6456e91921c2d9befa9631a7d4dd88b6", + "digest": "3c671cf31696ec6e7971de5ece2257d05a6555d29eac464765fa842e5db705bf", "distro": "debian-10", "type": "NAMI", - "version": "4.10.3-8" + "version": "4.11.0-0" } } \ No newline at end of file diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index a94fd2426f08..efc550295e48 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r18/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r19/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r92` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r92/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 0ecc2b1968709531315ceb9abae571bc856064b8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 16 Feb 2022 13:54:02 +0000 Subject: [PATCH 336/436] 1.5.0-debian-10-r93 release --- .../1/debian-10/Dockerfile | 18 +++++++++--------- .../opt/bitnami/.bitnami_components.json | 8 ++++---- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 55f8699ae38b..54730dfe6384 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -9,21 +9,21 @@ ENV HOME="/opt/bitnami/jupyterhub-singleuser/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl gzip libc6 libgcc1 libstdc++6 procps tar wget -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.10.3-8-linux-amd64-debian-10.tar.gz && \ - echo "b12c987e9637c0ccb1e0f12977b8423b6456e91921c2d9befa9631a7d4dd88b6 /tmp/bitnami/pkg/cache/miniconda-4.10.3-8-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.10.3-8-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/miniconda-4.10.3-8-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-31-linux-amd64-debian-10.tar.gz && \ - echo "2402aace38c8d5e7a9b90817197aeacbe96f274d8786ee0b4e5f309547b3bbb9 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-31-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-31-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-31-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.11.0-0-linux-amd64-debian-10.tar.gz && \ + echo "3c671cf31696ec6e7971de5ece2257d05a6555d29eac464765fa842e5db705bf /tmp/bitnami/pkg/cache/miniconda-4.11.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.11.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/miniconda-4.11.0-0-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-32-linux-amd64-debian-10.tar.gz && \ + echo "9c0e01776017ce072bc16eea8e5f7b46f1c6ce62ac1654b98f30dcb6d7b13b9e /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-32-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-32-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-32-linux-amd64-debian-10.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r92" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r93" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 9306dd43cb92..2f0f70db2a0c 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,16 +1,16 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "2402aace38c8d5e7a9b90817197aeacbe96f274d8786ee0b4e5f309547b3bbb9", + "digest": "9c0e01776017ce072bc16eea8e5f7b46f1c6ce62ac1654b98f30dcb6d7b13b9e", "distro": "debian-10", "type": "NAMI", - "version": "1.5.0-31" + "version": "1.5.0-32" }, "miniconda": { "arch": "amd64", - "digest": "b12c987e9637c0ccb1e0f12977b8423b6456e91921c2d9befa9631a7d4dd88b6", + "digest": "3c671cf31696ec6e7971de5ece2257d05a6555d29eac464765fa842e5db705bf", "distro": "debian-10", "type": "NAMI", - "version": "4.10.3-8" + "version": "4.11.0-0" } } \ No newline at end of file diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index efc550295e48..8bf3795feab8 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r19/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r92` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r92/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r93` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r93/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From b0a149a82e5c4cd30aefca1758b9704c804f5576 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 17 Feb 2022 13:51:10 +0000 Subject: [PATCH 337/436] 2.1.1-debian-10-r20 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 8be4f07db6a4..8af2e0a1edfe 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r20" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 8bf3795feab8..0210cc2fa170 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r19/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r20/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r93` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r93/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From a28461889f7d04d57beb9de3538c59f8ecd7bfb4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 17 Feb 2022 14:11:59 +0000 Subject: [PATCH 338/436] 1.5.0-debian-10-r94 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 54730dfe6384..c340af549be5 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r93" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r94" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 0210cc2fa170..278c2b5f1de3 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r20/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r93` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r93/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r94` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r94/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From ae29944e69a796fd1f3f7c29a57f5ecdb637264d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 18 Feb 2022 14:39:20 +0000 Subject: [PATCH 339/436] 2.1.1-debian-10-r21 release --- .../2/debian-10/Dockerfile | 18 +++++++++--------- .../opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 8af2e0a1edfe..7a0b734112b2 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -9,21 +9,21 @@ ENV HOME="/opt/bitnami/jupyterhub-singleuser/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl gzip libc6 libgcc1 libstdc++6 procps tar wget -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.11.0-0-linux-amd64-debian-10.tar.gz && \ - echo "3c671cf31696ec6e7971de5ece2257d05a6555d29eac464765fa842e5db705bf /tmp/bitnami/pkg/cache/miniconda-4.11.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.11.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/miniconda-4.11.0-0-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.1.1-2-linux-amd64-debian-10.tar.gz && \ - echo "17f99ea556f96484249ea74b061ea7970e89b5fe891c32f195acb5f893162d74 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-2-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.11.0-1-linux-amd64-debian-10.tar.gz && \ + echo "3c671cf31696ec6e7971de5ece2257d05a6555d29eac464765fa842e5db705bf /tmp/bitnami/pkg/cache/miniconda-4.11.0-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.11.0-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/miniconda-4.11.0-1-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.1.1-3-linux-amd64-debian-10.tar.gz && \ + echo "17f99ea556f96484249ea74b061ea7970e89b5fe891c32f195acb5f893162d74 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-3-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-3-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-3-linux-amd64-debian-10.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r20" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r21" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 6f6b91f81001..8b8917f1fc4e 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -4,13 +4,13 @@ "digest": "17f99ea556f96484249ea74b061ea7970e89b5fe891c32f195acb5f893162d74", "distro": "debian-10", "type": "NAMI", - "version": "2.1.1-2" + "version": "2.1.1-3" }, "miniconda": { "arch": "amd64", "digest": "3c671cf31696ec6e7971de5ece2257d05a6555d29eac464765fa842e5db705bf", "distro": "debian-10", "type": "NAMI", - "version": "4.11.0-0" + "version": "4.11.0-1" } } \ No newline at end of file diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 278c2b5f1de3..c8206b9aae30 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r20/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r21/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r94` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r94/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 1dd37fc261c061e7ad38eb78b469fd85802c6d44 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 18 Feb 2022 15:35:28 +0000 Subject: [PATCH 340/436] 1.5.0-debian-10-r95 release --- .../1/debian-10/Dockerfile | 18 +++++++++--------- .../opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index c340af549be5..f90c519cfc07 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -9,21 +9,21 @@ ENV HOME="/opt/bitnami/jupyterhub-singleuser/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl gzip libc6 libgcc1 libstdc++6 procps tar wget -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.11.0-0-linux-amd64-debian-10.tar.gz && \ - echo "3c671cf31696ec6e7971de5ece2257d05a6555d29eac464765fa842e5db705bf /tmp/bitnami/pkg/cache/miniconda-4.11.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.11.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/miniconda-4.11.0-0-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-32-linux-amd64-debian-10.tar.gz && \ - echo "9c0e01776017ce072bc16eea8e5f7b46f1c6ce62ac1654b98f30dcb6d7b13b9e /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-32-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-32-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-32-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.11.0-1-linux-amd64-debian-10.tar.gz && \ + echo "3c671cf31696ec6e7971de5ece2257d05a6555d29eac464765fa842e5db705bf /tmp/bitnami/pkg/cache/miniconda-4.11.0-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.11.0-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/miniconda-4.11.0-1-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-33-linux-amd64-debian-10.tar.gz && \ + echo "9c0e01776017ce072bc16eea8e5f7b46f1c6ce62ac1654b98f30dcb6d7b13b9e /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-33-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-33-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-33-linux-amd64-debian-10.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r94" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r95" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 2f0f70db2a0c..68d36bdbee3f 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -4,13 +4,13 @@ "digest": "9c0e01776017ce072bc16eea8e5f7b46f1c6ce62ac1654b98f30dcb6d7b13b9e", "distro": "debian-10", "type": "NAMI", - "version": "1.5.0-32" + "version": "1.5.0-33" }, "miniconda": { "arch": "amd64", "digest": "3c671cf31696ec6e7971de5ece2257d05a6555d29eac464765fa842e5db705bf", "distro": "debian-10", "type": "NAMI", - "version": "4.11.0-0" + "version": "4.11.0-1" } } \ No newline at end of file diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index c8206b9aae30..d2c90f32e146 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r21/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r94` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r94/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r95` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r95/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 89b16bbd8b746835f0341dbe610dadda6bf1af48 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 19 Feb 2022 17:24:38 +0000 Subject: [PATCH 341/436] 1.5.0-debian-10-r96 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index f90c519cfc07..cdadcaa6337a 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r95" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r96" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index d2c90f32e146..f5f511931874 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r21/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r95` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r95/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r96` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r96/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 8a37ecc5698610db0c6bbe63882d0dee0f2f228e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 20 Feb 2022 18:41:22 +0000 Subject: [PATCH 342/436] 1.5.0-debian-10-r97 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index cdadcaa6337a..960920cf14af 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r96" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r97" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f5f511931874..9a8b0cb968fc 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r21/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r96` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r96/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r97` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r97/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 18dec99756239340540721aa2bc86a74e61b5e6c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 21 Feb 2022 01:06:12 +0000 Subject: [PATCH 343/436] 2.1.1-debian-10-r22 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 7a0b734112b2..955a54876440 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r21" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r22" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 9a8b0cb968fc..95efcec2ba83 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r21/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r22/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r97` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r97/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f98e9b723736bd1bd5ce059f2631afe8697ea177 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 21 Feb 2022 03:09:04 +0000 Subject: [PATCH 344/436] 2.1.1-debian-10-r23 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 955a54876440..7211007524c8 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r22" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r23" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 95efcec2ba83..1bdbdcfb6cb2 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r22/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r23/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r97` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r97/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 2cb0a60a58d4ac93fe0f77d41275beb37c9dd84b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 21 Feb 2022 19:55:33 +0000 Subject: [PATCH 345/436] 1.5.0-debian-10-r98 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 960920cf14af..5b282bee4652 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r97" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r98" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 1bdbdcfb6cb2..3f6d07bea04f 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r23/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r97` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r97/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r98` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r98/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From ea5c343b52992885339438614bcbb09c8f3879b7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 22 Feb 2022 03:38:54 +0000 Subject: [PATCH 346/436] 2.1.1-debian-10-r24 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 7211007524c8..bfcfc6a04965 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r23" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r24" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 3f6d07bea04f..ee2456f0992b 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r23/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r24/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r98` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r98/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 094372cdc08352ff342fd7be84dfd353e599cb35 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 22 Feb 2022 20:19:38 +0000 Subject: [PATCH 347/436] 1.5.0-debian-10-r99 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 5b282bee4652..5d90e5406847 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r98" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r99" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index ee2456f0992b..fa916d10817c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r24/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r98` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r98/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r99` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r99/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 45ee627022e4a9200da3b86fd99b2485dca46aca Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 23 Feb 2022 03:57:33 +0000 Subject: [PATCH 348/436] 2.1.1-debian-10-r25 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index bfcfc6a04965..fff447caf3e0 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r24" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r25" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index fa916d10817c..3af10e42a8a3 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r24/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r25/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r99` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r99/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From cde1887406a8ee27d89bba494bbd9efe1e8685b7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 23 Feb 2022 20:46:28 +0000 Subject: [PATCH 349/436] 1.5.0-debian-10-r100 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 5d90e5406847..11df90daf2c3 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r99" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r100" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 3af10e42a8a3..21252342ab9c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r25/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r99` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r99/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r100` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r100/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 1f3f8fad93d14e8a7d9e6fcda7829e7448c544ec Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 24 Feb 2022 04:12:20 +0000 Subject: [PATCH 350/436] 2.1.1-debian-10-r26 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index fff447caf3e0..4c39e2d83232 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r25" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r26" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 21252342ab9c..2f43a4025988 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r25/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r26/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r100` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r100/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 09e51b2681437c2081b27776efe495fdba6d86e6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 24 Feb 2022 21:06:26 +0000 Subject: [PATCH 351/436] 1.5.0-debian-10-r101 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 11df90daf2c3..5b28fe03d523 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r100" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r101" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 2f43a4025988..de95bb2045e8 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r26/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r100` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r100/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r101` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r101/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From a8afe8858b58df61852c1d48043c1d2ae556316a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 25 Feb 2022 04:31:33 +0000 Subject: [PATCH 352/436] 2.1.1-debian-10-r27 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 4c39e2d83232..3decfa9296f1 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r26" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r27" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index de95bb2045e8..6860f89d3f18 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r26/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r27`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r27/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r101` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r101/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From bb596ce4735df22d66944c0625d43c52797a9af6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 25 Feb 2022 21:50:30 +0000 Subject: [PATCH 353/436] 1.5.0-debian-10-r102 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 5b28fe03d523..28ecb918f373 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r101" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r102" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 6860f89d3f18..f2f705a9b055 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r27`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r27/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r101` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r101/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r102` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r102/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 9f637a03aabefa1a444a91937fe7d3f388d320d4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 26 Feb 2022 05:01:38 +0000 Subject: [PATCH 354/436] 2.1.1-debian-10-r28 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 3decfa9296f1..c8038f287f93 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r27" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r28" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f2f705a9b055..85f934b92df7 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r27`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r27/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r28`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r28/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r102` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r102/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 80c299292201df1113f107361924b93233138de1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 26 Feb 2022 22:21:32 +0000 Subject: [PATCH 355/436] 1.5.0-debian-10-r103 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 28ecb918f373..fc74b1ab592a 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r102" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r103" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 85f934b92df7..fb4e1c750728 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r28`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r28/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r102` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r102/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r103` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r103/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 42a2d4369ba3f09b2685818db2ecf0827cbe227b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 27 Feb 2022 05:21:52 +0000 Subject: [PATCH 356/436] 2.1.1-debian-10-r29 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index c8038f287f93..da403145bf15 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r28" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r29" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index fb4e1c750728..92f4d536597b 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r28`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r28/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r29`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r29/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r103` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r103/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 25dab1ef2247720c87aa6de6bc50d574dcf26937 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 27 Feb 2022 22:58:36 +0000 Subject: [PATCH 357/436] 1.5.0-debian-10-r104 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index fc74b1ab592a..24cb0f578702 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r103" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r104" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 92f4d536597b..f4fd55dbf40a 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r29`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r29/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r103` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r103/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r104` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r104/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 944fffebd7cb1d01a914b17faf6dfaaff8add2b9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 28 Feb 2022 05:37:54 +0000 Subject: [PATCH 358/436] 2.1.1-debian-10-r30 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index da403145bf15..4448bea275d9 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r29" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r30" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f4fd55dbf40a..6a0ffc1ff8e4 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r29`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r29/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r30`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r30/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r104` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r104/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 7875435dedbe899eb4854ebd3f56ea7c665f4f2a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 28 Feb 2022 23:16:12 +0000 Subject: [PATCH 359/436] 1.5.0-debian-10-r105 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 24cb0f578702..adf590695ff4 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r104" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r105" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 6a0ffc1ff8e4..7d46916ae3ab 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r30`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r30/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r104` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r104/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r105` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r105/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 6d28bd024df7e030b408c61287dd784603a9922b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 1 Mar 2022 05:51:04 +0000 Subject: [PATCH 360/436] 2.1.1-debian-10-r31 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 4448bea275d9..8e9b6f5833eb 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r30" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r31" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 7d46916ae3ab..d4d879c62b06 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r30`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r30/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r31`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r31/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r105` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r105/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 2bf936773fb061074ca2a182b970b7047918a813 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 2 Mar 2022 04:16:33 +0000 Subject: [PATCH 361/436] 1.5.0-debian-10-r106 release --- .../1/debian-10/Dockerfile | 18 +++++++++--------- .../opt/bitnami/.bitnami_components.json | 8 ++++---- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index adf590695ff4..2606373145b5 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -9,21 +9,21 @@ ENV HOME="/opt/bitnami/jupyterhub-singleuser/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl gzip libc6 libgcc1 libstdc++6 procps tar wget -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.11.0-1-linux-amd64-debian-10.tar.gz && \ - echo "3c671cf31696ec6e7971de5ece2257d05a6555d29eac464765fa842e5db705bf /tmp/bitnami/pkg/cache/miniconda-4.11.0-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.11.0-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/miniconda-4.11.0-1-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-33-linux-amd64-debian-10.tar.gz && \ - echo "9c0e01776017ce072bc16eea8e5f7b46f1c6ce62ac1654b98f30dcb6d7b13b9e /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-33-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-33-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-33-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz && \ + echo "7d7b0982510dd8f036024aa748523c9974e398347d2cda91fe2541482a0d21cd /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-1.5.0-34-linux-amd64-debian-10.tar.gz && \ + echo "0bac552fa48662a0f6372e0c12e33723312a40c2c0657f846ad23c0143547745 /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-34-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-34-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-1.5.0-34-linux-amd64-debian-10.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r105" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r106" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 68d36bdbee3f..adc65b25a04c 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/1/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,16 +1,16 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "9c0e01776017ce072bc16eea8e5f7b46f1c6ce62ac1654b98f30dcb6d7b13b9e", + "digest": "0bac552fa48662a0f6372e0c12e33723312a40c2c0657f846ad23c0143547745", "distro": "debian-10", "type": "NAMI", - "version": "1.5.0-33" + "version": "1.5.0-34" }, "miniconda": { "arch": "amd64", - "digest": "3c671cf31696ec6e7971de5ece2257d05a6555d29eac464765fa842e5db705bf", + "digest": "7d7b0982510dd8f036024aa748523c9974e398347d2cda91fe2541482a0d21cd", "distro": "debian-10", "type": "NAMI", - "version": "4.11.0-1" + "version": "4.11.0-2" } } \ No newline at end of file diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index d4d879c62b06..96e721baa065 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r31`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r31/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r105` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r105/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r106` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r106/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From e42f4bda9a6d6a131b11d0b35e0bbee3f129e020 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 2 Mar 2022 07:34:06 +0000 Subject: [PATCH 362/436] 2.1.1-debian-10-r32 release --- .../2/debian-10/Dockerfile | 18 +++++++++--------- .../opt/bitnami/.bitnami_components.json | 8 ++++---- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 8e9b6f5833eb..b598c13ed330 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -9,21 +9,21 @@ ENV HOME="/opt/bitnami/jupyterhub-singleuser/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl gzip libc6 libgcc1 libstdc++6 procps tar wget -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.11.0-1-linux-amd64-debian-10.tar.gz && \ - echo "3c671cf31696ec6e7971de5ece2257d05a6555d29eac464765fa842e5db705bf /tmp/bitnami/pkg/cache/miniconda-4.11.0-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.11.0-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/miniconda-4.11.0-1-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.1.1-3-linux-amd64-debian-10.tar.gz && \ - echo "17f99ea556f96484249ea74b061ea7970e89b5fe891c32f195acb5f893162d74 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-3-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-3-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-3-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz && \ + echo "7d7b0982510dd8f036024aa748523c9974e398347d2cda91fe2541482a0d21cd /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.1.1-4-linux-amd64-debian-10.tar.gz && \ + echo "0bc0d2fad3eaa600a076afce660e553085a078b54deb4ee54f07c5513a99d406 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-4-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-4-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-4-linux-amd64-debian-10.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r31" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r32" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 8b8917f1fc4e..b5e9bf47be81 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,16 +1,16 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "17f99ea556f96484249ea74b061ea7970e89b5fe891c32f195acb5f893162d74", + "digest": "0bc0d2fad3eaa600a076afce660e553085a078b54deb4ee54f07c5513a99d406", "distro": "debian-10", "type": "NAMI", - "version": "2.1.1-3" + "version": "2.1.1-4" }, "miniconda": { "arch": "amd64", - "digest": "3c671cf31696ec6e7971de5ece2257d05a6555d29eac464765fa842e5db705bf", + "digest": "7d7b0982510dd8f036024aa748523c9974e398347d2cda91fe2541482a0d21cd", "distro": "debian-10", "type": "NAMI", - "version": "4.11.0-1" + "version": "4.11.0-2" } } \ No newline at end of file diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 96e721baa065..752088d6de91 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r31`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r31/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r32`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r32/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r106` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r106/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From f0786169a4ec3096def08d0aa494fdbd3e5c3f2e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 2 Mar 2022 19:17:47 +0000 Subject: [PATCH 363/436] 2.1.1-debian-10-r33 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index b598c13ed330..f28c2b35cc35 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -13,17 +13,17 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "7d7b0982510dd8f036024aa748523c9974e398347d2cda91fe2541482a0d21cd /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.1.1-4-linux-amd64-debian-10.tar.gz && \ - echo "0bc0d2fad3eaa600a076afce660e553085a078b54deb4ee54f07c5513a99d406 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-4-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-4-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-4-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.1.1-5-linux-amd64-debian-10.tar.gz && \ + echo "bfb47af557a6add0a95e795fc51c77e9d5a8d3bd6900024c68f01f07a5ac3529 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-5-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-5-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-5-linux-amd64-debian-10.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r32" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r33" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index b5e9bf47be81..e5f49c8d3081 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "0bc0d2fad3eaa600a076afce660e553085a078b54deb4ee54f07c5513a99d406", + "digest": "bfb47af557a6add0a95e795fc51c77e9d5a8d3bd6900024c68f01f07a5ac3529", "distro": "debian-10", "type": "NAMI", - "version": "2.1.1-4" + "version": "2.1.1-5" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 752088d6de91..259209026619 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r32`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r32/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r33`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r33/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r106` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r106/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 38cc45e9b41f56200af485f2c6c4f3e07dc2dbdc Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 3 Mar 2022 04:41:39 +0000 Subject: [PATCH 364/436] 1.5.0-debian-10-r107 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 2606373145b5..b47fedba2a57 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r106" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r107" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 259209026619..e3acdd2face6 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r33`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r33/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r106` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r106/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r107` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r107/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 3848d6362be37ace1377049be067143a4d53c521 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 3 Mar 2022 19:32:54 +0000 Subject: [PATCH 365/436] 2.1.1-debian-10-r34 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index f28c2b35cc35..f98bad007a1c 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r33" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r34" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index e3acdd2face6..704d19306c17 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r33`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r33/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r34`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r34/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r107` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r107/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 070dd53a7c0e6b7bcbbbd9995ed6bbb7916a0b75 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 4 Mar 2022 04:59:35 +0000 Subject: [PATCH 366/436] 1.5.0-debian-10-r108 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index b47fedba2a57..9839caa437a5 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r107" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r108" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 704d19306c17..0c8aaa195567 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r34`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r34/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r107` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r107/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r108` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r108/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 8ae6ec226136a825ee0dd0a6d42f5ac2bba59150 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 4 Mar 2022 19:47:17 +0000 Subject: [PATCH 367/436] 2.1.1-debian-10-r35 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index f98bad007a1c..3659957c30ba 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r34" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r35" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 0c8aaa195567..3ad49aee0db0 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r34`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r34/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r35`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r35/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r108` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r108/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 613bb72e7627739ed280fcf70ed7e157be23c1a8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 5 Mar 2022 05:18:14 +0000 Subject: [PATCH 368/436] 1.5.0-debian-10-r109 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 9839caa437a5..9705ea621f6a 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r108" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r109" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 3ad49aee0db0..449a8798677b 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r35`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r35/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r108` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r108/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r109` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r109/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 9b83783a9f3b76080a26fdf34852d55d1bd4dcd2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 5 Mar 2022 20:03:46 +0000 Subject: [PATCH 369/436] 2.1.1-debian-10-r36 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 3659957c30ba..43779ce31666 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r35" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r36" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 449a8798677b..60f0db5e6908 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r35`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r35/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r36`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r36/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r109` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r109/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From cddc348e746bc7a5b287c0a0ac8cb2af29938ce6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 6 Mar 2022 05:39:12 +0000 Subject: [PATCH 370/436] 1.5.0-debian-10-r110 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 9705ea621f6a..702ddabdbb8f 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r109" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r110" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 60f0db5e6908..619ad944032b 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r36`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r36/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r109` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r109/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r110` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r110/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From a6c3d9c030378884aa324c887bbc514034e94694 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 6 Mar 2022 20:23:26 +0000 Subject: [PATCH 371/436] 2.1.1-debian-10-r37 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 43779ce31666..2849ac2a2c15 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r36" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r37" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 619ad944032b..35b975383fa6 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r36`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r36/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r37`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r37/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r110` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r110/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 1d57fd88711df0c527c4d2457441239d726cde36 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 7 Mar 2022 05:58:28 +0000 Subject: [PATCH 372/436] 1.5.0-debian-10-r111 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 702ddabdbb8f..681478cdd9ad 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r110" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r111" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 35b975383fa6..64916b1bb8c7 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r37`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r37/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r110` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r110/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r111` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r111/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 9808b26798da5e47bb055bcf33688f7354d0a223 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 7 Mar 2022 16:58:34 +0000 Subject: [PATCH 373/436] 2.2.0-debian-10-r0 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 2849ac2a2c15..05a5189b1d49 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -13,17 +13,17 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "7d7b0982510dd8f036024aa748523c9974e398347d2cda91fe2541482a0d21cd /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.1.1-5-linux-amd64-debian-10.tar.gz && \ - echo "bfb47af557a6add0a95e795fc51c77e9d5a8d3bd6900024c68f01f07a5ac3529 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-5-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-5-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.1.1-5-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.2.0-0-linux-amd64-debian-10.tar.gz && \ + echo "cc3bb93a402f4a7d156c23610e6639caee9d53c3d22a003d71694a1b0b1a7981 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.0-0-linux-amd64-debian-10.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r37" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r0" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index e5f49c8d3081..3a358268ac7b 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "bfb47af557a6add0a95e795fc51c77e9d5a8d3bd6900024c68f01f07a5ac3529", + "digest": "cc3bb93a402f4a7d156c23610e6639caee9d53c3d22a003d71694a1b0b1a7981", "distro": "debian-10", "type": "NAMI", - "version": "2.1.1-5" + "version": "2.2.0-0" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 64916b1bb8c7..2c246322fca2 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.1.1`, `2.1.1-debian-10-r37`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.1.1-debian-10-r37/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.0-debian-10-r0/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r111` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r111/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 39b008217dc9d87f42629ebc54a62773d28c1c6f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 8 Mar 2022 06:21:26 +0000 Subject: [PATCH 374/436] 1.5.0-debian-10-r112 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 681478cdd9ad..1731612d6b60 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r111" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r112" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 2c246322fca2..27676adca772 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.0-debian-10-r0/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r111` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r111/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r112` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r112/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 9062f94628970c7e1e185c5fb52e22d38a06724a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 8 Mar 2022 17:14:13 +0000 Subject: [PATCH 375/436] 2.2.0-debian-10-r1 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 05a5189b1d49..ce3cfe6947a7 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r1" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 27676adca772..8a305818567f 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.0-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.0-debian-10-r1/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r112` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r112/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 11b43eaf8060f93f8cc1772e8ecb0ef690cdafb7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 9 Mar 2022 06:40:45 +0000 Subject: [PATCH 376/436] 1.5.0-debian-10-r113 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 1731612d6b60..959128d8eafe 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r112" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r113" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 8a305818567f..b3e407f6d5bb 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.0-debian-10-r1/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r112` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r112/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r113` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r113/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From e410bff36b304f2154e60e577848d7b13ae5e4f8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 9 Mar 2022 18:22:07 +0000 Subject: [PATCH 377/436] 2.2.0-debian-10-r2 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index ce3cfe6947a7..21de64cf964a 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r2" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index b3e407f6d5bb..601ad463e181 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.0-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.0-debian-10-r2/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r113` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r113/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 9d4c81c1a2782525b663befcbc0d41494df09a43 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 10 Mar 2022 04:09:54 +0000 Subject: [PATCH 378/436] 2.2.0-debian-10-r3 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 21de64cf964a..4c65f8fc2690 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -13,17 +13,17 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "7d7b0982510dd8f036024aa748523c9974e398347d2cda91fe2541482a0d21cd /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.2.0-0-linux-amd64-debian-10.tar.gz && \ - echo "cc3bb93a402f4a7d156c23610e6639caee9d53c3d22a003d71694a1b0b1a7981 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.0-0-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.2.0-1-linux-amd64-debian-10.tar.gz && \ + echo "341475f4efca029d5036c9a8187676b10258fd02bc2ff74a1499d75d7708b961 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.0-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.0-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.0-1-linux-amd64-debian-10.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r3" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 3a358268ac7b..333fd810f5a5 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "cc3bb93a402f4a7d156c23610e6639caee9d53c3d22a003d71694a1b0b1a7981", + "digest": "341475f4efca029d5036c9a8187676b10258fd02bc2ff74a1499d75d7708b961", "distro": "debian-10", "type": "NAMI", - "version": "2.2.0-0" + "version": "2.2.0-1" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 601ad463e181..9c35bf92d8af 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.0-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.0-debian-10-r3/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r113` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r113/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 81d01b07c245564fae24cfd44a38957f5e6a72e0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 10 Mar 2022 06:59:19 +0000 Subject: [PATCH 379/436] 1.5.0-debian-10-r114 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 959128d8eafe..20bf25ba8d64 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r113" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r114" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 9c35bf92d8af..a5ada75358e4 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.0-debian-10-r3/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r113` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r113/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r114` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r114/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 0fcf6fe561059867798645f693f3662ba9400439 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 11 Mar 2022 05:18:27 +0000 Subject: [PATCH 380/436] 2.2.0-debian-10-r4 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 4c65f8fc2690..1e1af25b1249 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r4" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index a5ada75358e4..afa214cb8bf4 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.0-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.0-debian-10-r4/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r114` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r114/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From e3f83eed4bf585f487bc2f928ae8af47c8e63f2a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 11 Mar 2022 07:15:25 +0000 Subject: [PATCH 381/436] 1.5.0-debian-10-r115 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 20bf25ba8d64..a3847c6d751b 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r114" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r115" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index afa214cb8bf4..d4d7b9293b93 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.0-debian-10-r4/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r114` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r114/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r115` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r115/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 521b2c31ae745155b376578056f9c533b39ed3ff Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 11 Mar 2022 19:04:46 +0000 Subject: [PATCH 382/436] 2.2.1-debian-10-r0 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 1e1af25b1249..9ed5d3ee79b5 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -13,17 +13,17 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "7d7b0982510dd8f036024aa748523c9974e398347d2cda91fe2541482a0d21cd /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.2.0-1-linux-amd64-debian-10.tar.gz && \ - echo "341475f4efca029d5036c9a8187676b10258fd02bc2ff74a1499d75d7708b961 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.0-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.0-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.0-1-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.2.1-0-linux-amd64-debian-10.tar.gz && \ + echo "ed8c74d1e7dad5e84a873e17cdd7fe426def55c522f484ba6c2e771f278b546c /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.1-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.1-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.1-0-linux-amd64-debian-10.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r0" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 333fd810f5a5..9d55f7411a4f 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "341475f4efca029d5036c9a8187676b10258fd02bc2ff74a1499d75d7708b961", + "digest": "ed8c74d1e7dad5e84a873e17cdd7fe426def55c522f484ba6c2e771f278b546c", "distro": "debian-10", "type": "NAMI", - "version": "2.2.0-1" + "version": "2.2.1-0" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index d4d7b9293b93..8ea733cc2b4d 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.0-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.1-debian-10-r0/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r115` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r115/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 8908c18243e74592f35e49d563b56dacaf6366cd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 12 Mar 2022 07:40:23 +0000 Subject: [PATCH 383/436] 1.5.0-debian-10-r116 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index a3847c6d751b..8f60fb9a1bd3 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r115" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r116" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 8ea733cc2b4d..f270d16df7b5 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.1-debian-10-r0/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r115` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r115/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r116` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r116/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 084fbbfd95cd2d12947f57b9cecbb6b80e0c477d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 12 Mar 2022 19:19:52 +0000 Subject: [PATCH 384/436] 2.2.1-debian-10-r1 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 9ed5d3ee79b5..15a0107d5cc8 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r1" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f270d16df7b5..b60f6cd62af9 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.1-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.1-debian-10-r1/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r116` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r116/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 565547b694675579cd5db508ef8b35d338cb17af Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 13 Mar 2022 08:52:00 +0000 Subject: [PATCH 385/436] 1.5.0-debian-10-r117 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 8f60fb9a1bd3..12510537137e 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r116" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r117" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index b60f6cd62af9..20b4d04b7a9c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.1-debian-10-r1/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r116` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r116/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r117` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r117/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From ac6e36c7ee716762a04677aba847a59498b4db68 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 13 Mar 2022 19:34:39 +0000 Subject: [PATCH 386/436] 2.2.1-debian-10-r2 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 15a0107d5cc8..94a127953275 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r2" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 20b4d04b7a9c..bfff2a91b551 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.1-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.1-debian-10-r2/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r117` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r117/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 65bfb5f8762fe180848b5cf09329b22cf0e51b79 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 14 Mar 2022 09:10:28 +0000 Subject: [PATCH 387/436] 1.5.0-debian-10-r118 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 12510537137e..fef65e937ba4 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r117" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r118" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index bfff2a91b551..11e1ada07033 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.1-debian-10-r2/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r117` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r117/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r118` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r118/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 97ddf2fec63f71cf3863437c7ba77cf30df5c9d1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 14 Mar 2022 18:09:15 +0000 Subject: [PATCH 388/436] 2.2.2-debian-10-r0 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 94a127953275..7f0a96791e3b 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -13,17 +13,17 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "7d7b0982510dd8f036024aa748523c9974e398347d2cda91fe2541482a0d21cd /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.2.1-0-linux-amd64-debian-10.tar.gz && \ - echo "ed8c74d1e7dad5e84a873e17cdd7fe426def55c522f484ba6c2e771f278b546c /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.1-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.1-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.1-0-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.2.2-0-linux-amd64-debian-10.tar.gz && \ + echo "41254f752a099b10d20e4fd611d56a17c97f9a2e949cc5ad5fe3015442253521 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.2-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.2-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.2-0-linux-amd64-debian-10.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r0" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 9d55f7411a4f..1be0d8b194dd 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "ed8c74d1e7dad5e84a873e17cdd7fe426def55c522f484ba6c2e771f278b546c", + "digest": "41254f752a099b10d20e4fd611d56a17c97f9a2e949cc5ad5fe3015442253521", "distro": "debian-10", "type": "NAMI", - "version": "2.2.1-0" + "version": "2.2.2-0" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 11e1ada07033..834a9e72df4a 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -2,7 +2,7 @@ ## What is Jupyter Base Notebook? -> Jupyter Base Notebook is an instance of Jupyter Notebook for your JupyterHub installation. The Base flavor contains the essential Python 3 packages and the JupyterLab user interface. +> Jupyter Base Notebook is an instance of Jupyter Notebook for your JupyterHub installation. The Base flavor contains the essential Python 3 packages and the JupyterLab user interface. [Overview of Jupyter Base Notebook](https://github.com/jupyter/docker-stacks) @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.1-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r0/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r118` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r118/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 1cc0b0667836bc5288d204c8fb989e01580b4008 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 14 Mar 2022 19:20:37 +0000 Subject: [PATCH 389/436] 2.2.2-debian-10-r1 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 10 +++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 7f0a96791e3b..a2ba1f701c63 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -13,17 +13,17 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "7d7b0982510dd8f036024aa748523c9974e398347d2cda91fe2541482a0d21cd /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.2.2-0-linux-amd64-debian-10.tar.gz && \ - echo "41254f752a099b10d20e4fd611d56a17c97f9a2e949cc5ad5fe3015442253521 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.2-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.2-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.2-0-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.2.2-1-linux-amd64-debian-10.tar.gz && \ + echo "c9418b1a800bacf06ca8cf09d1d15ee11ce4ea411964ff4f23ed6bba248ed62b /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.2-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.2-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.2-1-linux-amd64-debian-10.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r1" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 1be0d8b194dd..5a83abc3fcc0 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "41254f752a099b10d20e4fd611d56a17c97f9a2e949cc5ad5fe3015442253521", + "digest": "c9418b1a800bacf06ca8cf09d1d15ee11ce4ea411964ff4f23ed6bba248ed62b", "distro": "debian-10", "type": "NAMI", - "version": "2.2.2-0" + "version": "2.2.2-1" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 834a9e72df4a..f68ca0be327a 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r1/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r118` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r118/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 1abb23ca295ba8b428f50d61e4ffef4a1df2ef20 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 15 Mar 2022 09:38:40 +0000 Subject: [PATCH 390/436] 1.5.0-debian-10-r119 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index fef65e937ba4..44defa69fcee 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r118" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r119" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f68ca0be327a..a21674bf8dff 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r1/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r118` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r118/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r119` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r119/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 3ac9bc3c94e25e20b5077e43f3c9703e99951d87 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 15 Mar 2022 19:37:43 +0000 Subject: [PATCH 391/436] 2.2.2-debian-10-r2 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index a2ba1f701c63..ab887baa526d 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r2" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index a21674bf8dff..da85edecdf9c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r2/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r119` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r119/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From db453fa6254d4b0e7ff9296db03fa4d063d9511f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 16 Mar 2022 09:56:08 +0000 Subject: [PATCH 392/436] 1.5.0-debian-10-r120 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 44defa69fcee..0a5d08bfc881 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r119" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r120" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index da85edecdf9c..278e96c7cbd5 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r2/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r119` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r119/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r120` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r120/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 7e27943a03c441b364539e45e62917dc6a64d740 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Rodr=C3=ADguez=20Hern=C3=A1ndez?= Date: Wed, 16 Mar 2022 12:44:38 +0100 Subject: [PATCH 393/436] Update README.md --- bitnami/jupyter-base-notebook/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 278e96c7cbd5..6e584c2695df 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -77,7 +77,7 @@ Check the [official Jupyter Notebook documentation](https://jupyter.readthedocs. To add more python packages, you need to create a Dockerfile extending the current image, and the commands to install the desired packages. In the following example, the base notebook image is used to add `scipy` and `matplotlib`. -``` +```Dockerfile FROM bitnami/jupyter-base-notebook:latest RUN conda install --quiet --yes \ From 2807dbf1182b765a9d32a31cbb829363ff4b963b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 16 Mar 2022 19:55:55 +0000 Subject: [PATCH 394/436] 2.2.2-debian-10-r3 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index ab887baa526d..c620ce3c3cb6 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r3" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 6e584c2695df..a8f10735c6b7 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r3/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r120` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r120/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). @@ -79,11 +79,12 @@ In the following example, the base notebook image is used to add `scipy` and `ma ```Dockerfile FROM bitnami/jupyter-base-notebook:latest - +USER root RUN conda install --quiet --yes \ 'matplotlib-base' \ 'scipy' && \ conda clean --all -f -y +USER 1001 ``` ## Contributing From 48a43f57b912bdbc4c3e9e5f3dbd8a21ef2adedb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 17 Mar 2022 10:15:27 +0000 Subject: [PATCH 395/436] 1.5.0-debian-10-r121 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 0a5d08bfc881..ac79c70daa30 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r120" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r121" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index a8f10735c6b7..f098e6001210 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r3/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r120` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r120/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r121` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r121/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 85a019529d6b52241a54be960d35ca93d47c6857 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 17 Mar 2022 20:37:41 +0000 Subject: [PATCH 396/436] 2.2.2-debian-10-r4 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index c620ce3c3cb6..8da077e0575a 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r4" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f098e6001210..8b885ab475ff 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r4/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r121` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r121/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From e733f0f29a0ea97fcb6b45910f380779765a3db6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 18 Mar 2022 10:33:37 +0000 Subject: [PATCH 397/436] 1.5.0-debian-10-r122 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index ac79c70daa30..6d9a514dad13 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r121" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r122" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 8b885ab475ff..d1aca30556d3 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r4/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r121` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r121/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r122` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r122/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 8cf5997f78f902a9b88952cb64f88c6d9036a0b8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 18 Mar 2022 20:53:58 +0000 Subject: [PATCH 398/436] 2.2.2-debian-10-r5 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 8da077e0575a..b384a6f64939 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r5" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index d1aca30556d3..22fa015946e0 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r5/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r122` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r122/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 8ac87190f61a2f1bac2966ae660c52319f60f010 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 19 Mar 2022 10:53:44 +0000 Subject: [PATCH 399/436] 1.5.0-debian-10-r123 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 6d9a514dad13..49900c23cc53 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r122" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r123" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 22fa015946e0..945eb311cfe5 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r5/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r122` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r122/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r123` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r123/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 321a8f70387a9c22633020fd349330f537733659 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 19 Mar 2022 21:11:06 +0000 Subject: [PATCH 400/436] 2.2.2-debian-10-r6 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index b384a6f64939..ec936f82ad52 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r6" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 945eb311cfe5..19ff32f9eec5 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r5/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r6/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r123` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r123/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 8d6d6e2d4f7df1113ee3fd91284f1755792371ed Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 20 Mar 2022 11:11:41 +0000 Subject: [PATCH 401/436] 1.5.0-debian-10-r124 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 49900c23cc53..ec1f52057ffb 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r123" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r124" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 19ff32f9eec5..fdb326fa2199 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r6/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r123` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r123/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r124` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r124/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 41afcab63a7e528dad7e16f30cb89288d668a38e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 20 Mar 2022 21:26:23 +0000 Subject: [PATCH 402/436] 2.2.2-debian-10-r7 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index ec936f82ad52..95e303d7fd94 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r7" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index fdb326fa2199..c41f686cfbad 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r6/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r7/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r124` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r124/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From fb439c1b49c243c2436fba16bb56544776ba055a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 21 Mar 2022 11:34:09 +0000 Subject: [PATCH 403/436] 1.5.0-debian-10-r125 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index ec1f52057ffb..4bf48523c30c 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r124" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r125" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index c41f686cfbad..0941f7915f29 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r7/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r124` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r124/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r125` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r125/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 84bad7ecd006f6d8bbe07926792dfcc91a71a0f1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 21 Mar 2022 21:43:08 +0000 Subject: [PATCH 404/436] 2.2.2-debian-10-r8 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 95e303d7fd94..97d4992cea83 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r8" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 0941f7915f29..ff7f16b8c2f0 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r7/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r8/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r125` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r125/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 4c4fe7ae6dac0a6b56cfbc5751b4e4eb64f21f60 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 22 Mar 2022 11:52:58 +0000 Subject: [PATCH 405/436] 1.5.0-debian-10-r126 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 4bf48523c30c..6795f5ca88db 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -23,7 +23,7 @@ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r125" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r126" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index ff7f16b8c2f0..2cbea8bb4b7c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r8/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r125` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r125/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r126` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r126/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From e509cb0f8bd3b52bacbb7ab61375f1f7750c3159 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 22 Mar 2022 22:00:30 +0000 Subject: [PATCH 406/436] 2.2.2-debian-10-r9 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 5 +++-- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 97d4992cea83..24be6c3f7499 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -22,8 +22,9 @@ RUN apt-get update && apt-get upgrade -y && \ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ -ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r8" \ +ENV APP_VERSION="2.2.2" \ + BITNAMI_APP_NAME="jupyter-base-notebook" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r9" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 2cbea8bb4b7c..2df6d162d28c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r8/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r9/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r126` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r126/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From a7aafe476b21b19b161697ea793687a61a1bf4be Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 23 Mar 2022 12:12:27 +0000 Subject: [PATCH 407/436] 1.5.0-debian-10-r127 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 5 +++-- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 6795f5ca88db..47a183fb7fda 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -22,8 +22,9 @@ RUN apt-get update && apt-get upgrade -y && \ RUN chmod g+rwX /opt/bitnami RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyterhub-singleuser/ -ENV BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r126" \ +ENV APP_VERSION="1.5.0" \ + BITNAMI_APP_NAME="jupyter-base-notebook" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r127" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 2df6d162d28c..2b45f710c27d 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r9/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r126` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r126/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r127` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r127/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From e7cd542e8599d3f0c12f97e645e2cda4ad85ea73 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 23 Mar 2022 23:19:58 +0000 Subject: [PATCH 408/436] 2.2.2-debian-10-r10 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 24be6c3f7499..4cc578a189c1 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="2.2.2" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r10" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 2b45f710c27d..6b985e87655e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r9/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r10/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r127` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r127/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 98dd36247c02ac15c7617ed76d2e8c01a250f089 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 24 Mar 2022 12:33:03 +0000 Subject: [PATCH 409/436] 1.5.0-debian-10-r128 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 47a183fb7fda..c7dabefc6135 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="1.5.0" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r127" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r128" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 6b985e87655e..ebe0861637e3 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r10/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r127` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r127/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r128` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r128/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 89212cb2c21a90cdf4fb5ac237b6aa6643860ab7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 24 Mar 2022 23:36:57 +0000 Subject: [PATCH 410/436] 2.2.2-debian-10-r11 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 4cc578a189c1..bd27d06cf07e 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="2.2.2" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r11" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index ebe0861637e3..c5dc120cd0af 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r10/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r11/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r128` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r128/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 66f10506df04e0968a22f639ca3c48ee0633304a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 25 Mar 2022 14:19:14 +0000 Subject: [PATCH 411/436] 1.5.0-debian-10-r129 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index c7dabefc6135..2337dc8d6a6f 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="1.5.0" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r128" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r129" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index c5dc120cd0af..18d71e9cb2d8 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r11/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r128` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r128/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r129` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r129/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From a002bdf11a6b7506e33ea775904325fd593ecab8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 25 Mar 2022 23:52:25 +0000 Subject: [PATCH 412/436] 2.2.2-debian-10-r12 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index bd27d06cf07e..cbdc1b0e2166 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="2.2.2" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r12" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 18d71e9cb2d8..769a2ba7bfb6 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r11/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r12/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r129` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r129/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From a1953b7cc874752146dc5bd85417e4effc10cab0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 26 Mar 2022 15:28:49 +0000 Subject: [PATCH 413/436] 1.5.0-debian-10-r130 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 2337dc8d6a6f..9e23fe89ad1d 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="1.5.0" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r129" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r130" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 769a2ba7bfb6..5c35daf7dbec 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r12/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r129` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r129/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r130` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r130/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 6b37aa9d3a862ba55d7021db090d993d0f607175 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 27 Mar 2022 00:05:20 +0000 Subject: [PATCH 414/436] 2.2.2-debian-10-r13 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index cbdc1b0e2166..364a674a39cd 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="2.2.2" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r13" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 5c35daf7dbec..6eeff54626d6 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r12/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r13/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r130` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r130/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From abf98d61bff2b20f9edb815df03b6b757d94a72d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 27 Mar 2022 15:48:39 +0000 Subject: [PATCH 415/436] 1.5.0-debian-10-r131 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 9e23fe89ad1d..9424a730abbd 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="1.5.0" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r130" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r131" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 6eeff54626d6..d67eb4a7192b 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r13/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r130` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r130/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r131` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r131/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 775b974a2c4395c0f2a73d597f82443b74af3f23 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 28 Mar 2022 00:22:47 +0000 Subject: [PATCH 416/436] 2.2.2-debian-10-r14 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 364a674a39cd..1aef92a6f76e 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="2.2.2" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r14" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index d67eb4a7192b..8cec47685271 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r13/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r14/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r131` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r131/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 46c73adbaaad08e6f88d5859fc62be00ab66765f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 28 Mar 2022 16:10:55 +0000 Subject: [PATCH 417/436] 1.5.0-debian-10-r132 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 9424a730abbd..345089d51dbe 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="1.5.0" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r131" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r132" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 8cec47685271..645623ad0c5f 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r14/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r131` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r131/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r132` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r132/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 1674114c44c8d4c7fe3d30556033f679316c6de5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 29 Mar 2022 00:37:41 +0000 Subject: [PATCH 418/436] 2.2.2-debian-10-r15 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 1aef92a6f76e..6594aa81ef48 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="2.2.2" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r15" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 645623ad0c5f..f0d6729fb6ac 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r14/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r15/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r132` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r132/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From eadb16dba74ae6c92866e1e38da72b3019576cf3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 29 Mar 2022 16:30:23 +0000 Subject: [PATCH 419/436] 1.5.0-debian-10-r133 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 345089d51dbe..38f4673d2b76 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="1.5.0" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r132" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r133" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index f0d6729fb6ac..15c3077ff764 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r15/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r132` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r132/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r133` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r133/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 89810d5d36a8e6a886bf8393e9cf5e361dbd3927 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 30 Mar 2022 00:50:57 +0000 Subject: [PATCH 420/436] 2.2.2-debian-10-r16 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 6594aa81ef48..f153a8b5c86b 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="2.2.2" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r16" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 15c3077ff764..0006936e34f7 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r15/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r16/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r133` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r133/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From dc3d129d2d8d60ccc8b8fda868407d9704feef07 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 30 Mar 2022 16:49:59 +0000 Subject: [PATCH 421/436] 1.5.0-debian-10-r134 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 38f4673d2b76..786a399a7cf1 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="1.5.0" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r133" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r134" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 0006936e34f7..7dba950ccf82 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r16/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r133` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r133/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r134` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r134/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 4e3433a4c1bd19ef920536c406b826c7b3d860d9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 31 Mar 2022 01:06:29 +0000 Subject: [PATCH 422/436] 2.2.2-debian-10-r17 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index f153a8b5c86b..3a3c6a5d0dcf 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="2.2.2" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r17" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 7dba950ccf82..d36fe13e6d6b 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r16/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r17/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r134` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r134/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 537606d58429098cf89888057a2e603fdd23723a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 31 Mar 2022 17:09:10 +0000 Subject: [PATCH 423/436] 1.5.0-debian-10-r135 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 786a399a7cf1..25b787dcf21f 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="1.5.0" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r134" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r135" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index d36fe13e6d6b..cb3372c67b51 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r17/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r134` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r134/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r135` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r135/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 40de867112e15742aa8ad4dbe804d276d44275e3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 1 Apr 2022 01:22:38 +0000 Subject: [PATCH 424/436] 2.2.2-debian-10-r18 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 3a3c6a5d0dcf..10b6f5152acd 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="2.2.2" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r18" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index cb3372c67b51..a4de2015984e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r17/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r18/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r135` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r135/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From c96c0c8c7bca5913c443d4ede1c174c9f55d2c2c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 1 Apr 2022 20:12:27 +0000 Subject: [PATCH 425/436] 1.5.0-debian-10-r136 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 25b787dcf21f..75d463ba2f91 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="1.5.0" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r135" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r136" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index a4de2015984e..1d7eb32fef84 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r18/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r135` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r135/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r136` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r136/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 02665c226d27b4dc87e83f12466cc38bf6cda109 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 2 Apr 2022 01:37:27 +0000 Subject: [PATCH 426/436] 2.2.2-debian-10-r19 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 10b6f5152acd..25d76c68c47a 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="2.2.2" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r19" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 1d7eb32fef84..8988df590e9d 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r18/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r19/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r136` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r136/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 61d84d914e16fdcb598915b8a207df9fc959984a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 2 Apr 2022 20:31:44 +0000 Subject: [PATCH 427/436] 1.5.0-debian-10-r137 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 75d463ba2f91..4822c690dffb 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="1.5.0" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r136" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r137" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 8988df590e9d..46763ddcbbbb 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r19/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r136` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r136/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r137` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r137/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 1b99866f45399cb28a24b54bf4abfe014a0a936b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 3 Apr 2022 01:52:05 +0000 Subject: [PATCH 428/436] 2.2.2-debian-10-r20 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 25d76c68c47a..b74936ec22a4 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="2.2.2" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r20" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 46763ddcbbbb..8877cefcdec1 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r19/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r20/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r137` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r137/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 9e0532dfb6b8aa128c0e0b0b3ad893e7a8c0ed6c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 3 Apr 2022 20:54:05 +0000 Subject: [PATCH 429/436] 1.5.0-debian-10-r138 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 4822c690dffb..a561849e0fa4 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="1.5.0" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r137" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r138" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 8877cefcdec1..edb5d3cba06c 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r20/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r137` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r137/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r138` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r138/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 85ec244b7f7483a9c75c1d484a3ece3fe5221c64 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 4 Apr 2022 02:06:09 +0000 Subject: [PATCH 430/436] 2.2.2-debian-10-r21 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index b74936ec22a4..eac97070dc68 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="2.2.2" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r20" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r21" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index edb5d3cba06c..c3a2d289ee07 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r20/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r21/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r138` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r138/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From b20c6d0759501a5256c287f63663c91042b87e51 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 5 Apr 2022 06:29:56 +0000 Subject: [PATCH 431/436] 1.5.0-debian-10-r139 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index a561849e0fa4..72a78fae24cf 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="1.5.0" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r138" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r139" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index c3a2d289ee07..b6161bd2246e 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r21/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r138` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r138/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r139` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r139/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From a7c2e07c8fe7da8695e7103753d5c4be2aff3137 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 5 Apr 2022 08:31:58 +0000 Subject: [PATCH 432/436] 2.2.2-debian-10-r22 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 2 +- bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index eac97070dc68..0d8a0eef62f0 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -24,7 +24,7 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="2.2.2" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r21" \ + BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r22" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index b6161bd2246e..3848d29fbd5d 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r21/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r22/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r139` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r139/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From 0fbd078d0dad9d4263baa0544a8df9bbe26ef0c3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 7 Apr 2022 10:28:48 +0000 Subject: [PATCH 433/436] 2.2.2-debian-10-r23 release --- bitnami/jupyter-base-notebook/2/debian-10/Dockerfile | 9 ++++----- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/jupyter-base-notebook/README.md | 2 +- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile index 0d8a0eef62f0..25772e55dc6e 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/2/debian-10/Dockerfile @@ -13,10 +13,10 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac echo "7d7b0982510dd8f036024aa748523c9974e398347d2cda91fe2541482a0d21cd /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ tar -zxf /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ rm -rf /tmp/bitnami/pkg/cache/miniconda-4.11.0-2-linux-amd64-debian-10.tar.gz -RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.2.2-1-linux-amd64-debian-10.tar.gz && \ - echo "c9418b1a800bacf06ca8cf09d1d15ee11ce4ea411964ff4f23ed6bba248ed62b /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.2-1-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ - tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.2-1-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ - rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.2-1-linux-amd64-debian-10.tar.gz +RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/jupyter-base-notebook-2.2.2-2-linux-amd64-debian-10.tar.gz && \ + echo "5df39ab247aad8e51eb37d472ed10c0bd4805da062e37eafac2c06d1bb1caab8 /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.2-2-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \ + tar -zxf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.2-2-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \ + rm -rf /tmp/bitnami/pkg/cache/jupyter-base-notebook-2.2.2-2-linux-amd64-debian-10.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami @@ -24,7 +24,6 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="2.2.2" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="2.2.2-debian-10-r22" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 5a83abc3fcc0..5d277bd3404b 100644 --- a/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/jupyter-base-notebook/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "jupyter-base-notebook": { "arch": "amd64", - "digest": "c9418b1a800bacf06ca8cf09d1d15ee11ce4ea411964ff4f23ed6bba248ed62b", + "digest": "5df39ab247aad8e51eb37d472ed10c0bd4805da062e37eafac2c06d1bb1caab8", "distro": "debian-10", "type": "NAMI", - "version": "2.2.2-1" + "version": "2.2.2-2" }, "miniconda": { "arch": "amd64", diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 3848d29fbd5d..62d471eaf62d 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r22/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r23/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r139` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r139/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From ff6ec293f1ef1551a3f6f248d71fe03883131b33 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 7 Apr 2022 13:10:06 +0000 Subject: [PATCH 434/436] 1.5.0-debian-10-r140 release --- bitnami/jupyter-base-notebook/1/debian-10/Dockerfile | 1 - bitnami/jupyter-base-notebook/README.md | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile index 72a78fae24cf..16fad14b54d3 100644 --- a/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile +++ b/bitnami/jupyter-base-notebook/1/debian-10/Dockerfile @@ -24,7 +24,6 @@ RUN mkdir /opt/bitnami/jupyterhub-singleuser/ && chmod g+rwX /opt/bitnami/jupyte ENV APP_VERSION="1.5.0" \ BITNAMI_APP_NAME="jupyter-base-notebook" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r139" \ PATH="/opt/bitnami/miniconda/bin:$PATH" USER 1001 diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 62d471eaf62d..63ac07ebaa45 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r23/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r139` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r139/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r140` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r140/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From ac4b137a901f0f4131ada118df60c64bd853aacb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 8 Apr 2022 10:43:35 +0000 Subject: [PATCH 435/436] 2.2.2-debian-10-r24 release --- bitnami/jupyter-base-notebook/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index 63ac07ebaa45..ca273d92cfdf 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -31,7 +31,7 @@ $ docker run --name jupyter-base-notebook bitnami/jupyter-base-notebook:latest Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r23/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r24/2/debian-10/Dockerfile) * [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r140` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r140/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook). From fc8e2bef2914de221296d0bd541e940700c5a81d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 8 Apr 2022 13:31:12 +0000 Subject: [PATCH 436/436] 1.5.0-debian-10-r141 release --- bitnami/jupyter-base-notebook/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitnami/jupyter-base-notebook/README.md b/bitnami/jupyter-base-notebook/README.md index ca273d92cfdf..6affd9721d47 100644 --- a/bitnami/jupyter-base-notebook/README.md +++ b/bitnami/jupyter-base-notebook/README.md @@ -32,7 +32,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2`, `2-debian-10`, `2.2.2`, `2.2.2-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/2.2.2-debian-10-r24/2/debian-10/Dockerfile) -* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r140` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r140/1/debian-10/Dockerfile) +* [`1`, `1-debian-10`, `1.5.0`, `1.5.0-debian-10-r141` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook/blob/1.5.0-debian-10-r141/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/jupyter-base-notebook GitHub repo](https://github.com/bitnami/bitnami-docker-jupyter-base-notebook).