Skip to content

Commit 3208296

Browse files
committed
base: update base images to Debian Bullseye
1 parent b02a689 commit 3208296

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ clean:
3636
docker network prune
3737

3838
prepare:
39-
docker pull debian:buster-slim
39+
docker pull debian:bullseye-slim
4040
FORCE_REBUILD=1 $(MAKE)
4141

4242
.PHONY: all build tag push clean prepare release $(addprefix build_,$(JITSI_SERVICES))

base/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:buster-slim
1+
FROM debian:bullseye-slim
22

33
ARG JITSI_RELEASE=stable
44
ARG FREP_VERSION=1.3.11
@@ -13,7 +13,7 @@ RUN apt-dpkg-wrap apt-get update && \
1313
wget -qO - https://download.jitsi.org/jitsi-key.gpg.key | gpg --dearmour > /etc/apt/trusted.gpg.d/jitsi.gpg && \
1414
wget -qO /usr/bin/frep https://github.com/subchen/frep/releases/download/v$FREP_VERSION/frep-$FREP_VERSION-linux-amd64 && \
1515
echo "deb https://download.jitsi.org $JITSI_RELEASE/" > /etc/apt/sources.list.d/jitsi.list && \
16-
echo "deb http://ftp.debian.org/debian buster-backports main" > /etc/apt/sources.list.d/backports.list && \
16+
echo "deb http://ftp.debian.org/debian bullseye-backports main" > /etc/apt/sources.list.d/backports.list && \
1717
apt-dpkg-wrap apt-get update && \
1818
apt-dpkg-wrap apt-get dist-upgrade -y && \
1919
apt-cleanup && \

jigasi/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ENV GOOGLE_APPLICATION_CREDENTIALS /config/key.json
88

99
RUN mkdir -p /usr/share/man/man1 && \
1010
wget -qO - https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | gpg --dearmour > /etc/apt/trusted.gpg.d/openjdk.gpg && \
11-
echo "deb https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/ buster main" > /etc/apt/sources.list.d/openjdk.list && \
11+
echo "deb https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/ bullseye main" > /etc/apt/sources.list.d/openjdk.list && \
1212
apt-dpkg-wrap apt-get update && \
1313
apt-dpkg-wrap apt-get install -y adoptopenjdk-8-hotspot-jre && \
1414
apt-dpkg-wrap apt-get install -y jigasi jq && \

prosody/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ FROM ${JITSI_REPO}/base:${BASE_TAG}
2121
ENV XMPP_CROSS_DOMAIN="false"
2222

2323
RUN wget -qO /etc/apt/trusted.gpg.d/prosody.gpg https://prosody.im/files/prosody-debian-packages.key && \
24-
echo "deb http://packages.prosody.im/debian buster main" > /etc/apt/sources.list.d/prosody.list && \
24+
echo "deb http://packages.prosody.im/debian bullseye main" > /etc/apt/sources.list.d/prosody.list && \
2525
apt-dpkg-wrap apt-get update && \
2626
apt-dpkg-wrap apt-get install -y \
2727
prosody \

0 commit comments

Comments
 (0)