File tree Expand file tree Collapse file tree 4 files changed +14
-20
lines changed Expand file tree Collapse file tree 4 files changed +14
-20
lines changed Original file line number Diff line number Diff line change 33
33
docker network prune
34
34
35
35
prepare :
36
- docker pull debian:stretch -slim
36
+ docker pull debian:buster -slim
37
37
FORCE_REBUILD=1 $(MAKE )
38
38
39
39
.PHONY : all build tag push clean prepare release
Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ FROM ${JITSI_REPO}/base
3
3
4
4
RUN \
5
5
mkdir -p /usr/share/man/man1 && \
6
+ wget -qO - https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | apt-key add - && \
7
+ echo "deb https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/ buster main" > /etc/apt/sources.list.d/openjdk.list && \
6
8
apt-dpkg-wrap apt-get update && \
7
- apt-dpkg-wrap apt-get install -y openjdk -8-jre-headless && \
9
+ apt-dpkg-wrap apt-get install -y adoptopenjdk -8-hotspot-jre && \
8
10
apt-cleanup
9
-
Original file line number Diff line number Diff line change 1
- FROM debian:stretch -slim
1
+ FROM debian:buster -slim
2
2
3
3
ARG JITSI_RELEASE=stable
4
4
ARG FREP_VERSION=1.3.11
@@ -9,14 +9,12 @@ COPY rootfs /
9
9
10
10
RUN \
11
11
apt-dpkg-wrap apt-get update && \
12
- apt-dpkg-wrap apt-get install -y apt-transport-https apt-utils ca-certificates gnupg && \
13
- apt-dpkg-wrap apt-get install -y wget && \
12
+ apt-dpkg-wrap apt-get install -y apt-transport-https apt-utils ca-certificates gnupg wget && \
14
13
wget -qO - https://github.com/just-containers/s6-overlay/releases/download/v1.22.1.0/s6-overlay-amd64.tar.gz | tar xfz - -C / && \
15
14
wget -qO - https://download.jitsi.org/jitsi-key.gpg.key | apt-key add - && \
16
15
wget -q https://github.com/subchen/frep/releases/download/v$FREP_VERSION/frep-$FREP_VERSION-linux-amd64 -O /usr/bin/frep && \
17
- apt-dpkg-wrap apt-get --purge remove -y wget && \
18
16
echo "deb https://download.jitsi.org $JITSI_RELEASE/" > /etc/apt/sources.list.d/jitsi.list && \
19
- echo "deb http://ftp.debian.org/debian stretch -backports main" > /etc/apt/sources.list.d/backports.list && \
17
+ echo "deb http://ftp.debian.org/debian buster -backports main" > /etc/apt/sources.list.d/backports.list && \
20
18
apt-dpkg-wrap apt-get update && \
21
19
apt-dpkg-wrap apt-get dist-upgrade -y && \
22
20
apt-cleanup && \
Original file line number Diff line number Diff line change 8
8
lua5.2 \
9
9
liblua5.2-dev \
10
10
libsasl2-dev \
11
- libssl1.0 -dev \
11
+ libssl -dev \
12
12
luarocks \
13
13
git \
14
14
gcc \
15
15
&& luarocks install cyrussasl 1.1.0-1 \
16
- && luarocks install lua-cjson 2.1.0-1 \
17
- && luarocks install luajwtjitsi 1.3-7 \
18
- && luarocks install net-url 0.9-1
16
+ && luarocks install net-url 0.9-1 \
17
+ && luarocks install luajwtjitsi 2.0-0
19
18
20
19
FROM ${JITSI_REPO}/base
21
20
22
- ADD https://prosody.im/files/prosody-debian-packages.key /tmp/prosody.key
23
-
24
21
RUN \
25
- apt-key add /tmp/prosody.key \
26
- && rm -f /tmp/prosody.key \
27
- && echo "deb http://packages.prosody.im/debian stretch main" > /etc/apt/sources.list.d/prosody.list \
22
+ wget -qO - https://prosody.im/files/prosody-debian-packages.key | apt-key add - \
23
+ && echo "deb http://packages.prosody.im/debian buster main" > /etc/apt/sources.list.d/prosody.list \
28
24
&& apt-dpkg-wrap apt-get update \
29
25
&& apt-dpkg-wrap apt-get install -y \
30
26
prosody \
31
- libssl1.0.2 \
27
+ libssl1.1 \
32
28
sasl2-bin \
33
29
libsasl2-modules-ldap \
34
30
lua-basexx \
35
- patch \
36
- && apt-dpkg-wrap apt-get install -t stretch-backports -y \
37
31
lua-ldap \
38
32
lua-sec \
33
+ patch \
39
34
&& apt-cleanup \
40
35
&& rm -rf /etc/prosody
41
36
You can’t perform that action at this time.
0 commit comments