This is an automated email from the ASF dual-hosted git repository. kocolosk pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/couchdb-docker.git
commit 4dc3a6b1f2bd8d46489cad5828912f0a64bf0b36 Author: Adam Kocoloski <[email protected]> AuthorDate: Fri Feb 25 16:47:28 2022 -0500 Update Debian / Erlang / SpiderMonkey versions Debian: 10 -> 11 Erlang: 20 -> 23 SpiderMonkey: 60 -> 78 (implicit in Debian upgrade) --- 3.2.1/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/3.2.1/Dockerfile b/3.2.1/Dockerfile index 61b43b7..27e9d9c 100644 --- a/3.2.1/Dockerfile +++ b/3.2.1/Dockerfile @@ -10,7 +10,7 @@ # License for the specific language governing permissions and limitations under # the License. -FROM debian:buster-slim +FROM debian:bullseye-slim LABEL maintainer="CouchDB Developers [email protected]" @@ -54,7 +54,7 @@ RUN set -eux; \ apt purge -y --autoremove curl; \ rm -rf /var/lib/apt/lists/* -ENV COUCHDB_VERSION 3.2.1 +ENV COUCHDB_VERSION 3.2.1-1 RUN . /etc/os-release; \ echo "deb [signed-by=/usr/share/keyrings/couchdb-archive-keyring.gpg] https://apache.jfrog.io/artifactory/couchdb-deb/ ${VERSION_CODENAME} main" | \ @@ -67,7 +67,7 @@ RUN set -eux; \ echo "couchdb couchdb/mode select none" | debconf-set-selections; \ # we DO want recommends this time DEBIAN_FRONTEND=noninteractive apt-get install -y --allow-downgrades --allow-remove-essential --allow-change-held-packages \ - couchdb="$COUCHDB_VERSION"~buster \ + couchdb="$COUCHDB_VERSION"~bullseye \ ; \ # Undo symlinks to /var/log and /var/lib rmdir /var/lib/couchdb /var/log/couchdb; \
