diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-02-02 14:48:59 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-02-02 14:48:59 +0100 |
commit | 2d6616195f011a131ad166aebdceb771c9fc573f (patch) | |
tree | ed681bfe7a28d31603ef3c3275bda4e004d3cd80 /cluster/prod/app/jitsi/build/jitsi-xmpp | |
parent | 6445d55e3e651d1728f722377c65504c4fe91cf6 (diff) | |
download | nixcfg-2d6616195f011a131ad166aebdceb771c9fc573f.tar.gz nixcfg-2d6616195f011a131ad166aebdceb771c9fc573f.zip |
upgrade the building logic
Diffstat (limited to 'cluster/prod/app/jitsi/build/jitsi-xmpp')
-rw-r--r-- | cluster/prod/app/jitsi/build/jitsi-xmpp/Dockerfile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/cluster/prod/app/jitsi/build/jitsi-xmpp/Dockerfile b/cluster/prod/app/jitsi/build/jitsi-xmpp/Dockerfile index a060fda..5efdee2 100644 --- a/cluster/prod/app/jitsi/build/jitsi-xmpp/Dockerfile +++ b/cluster/prod/app/jitsi/build/jitsi-xmpp/Dockerfile @@ -10,13 +10,11 @@ FROM debian:bookworm ARG PROSODY_VERSION RUN apt-get update && \ - apt-get install -y wget gnupg2 && \ - echo deb http://packages.prosody.im/debian buster main \ - | tee -a /etc/apt/sources.list && \ - wget https://prosody.im/files/prosody-debian-packages.key -O - \ - | apt-key add - && \ + apt-get install -y wget gnupg2 extrepo && \ + extrepo enable prosody && \ apt-get update && \ - apt-get install -y prosody=${PROSODY_VERSION} lua-event + apt-cache show prosody-0.12 && \ + apt-get install -y prosody-0.12=${PROSODY_VERSION} lua-event RUN mkdir -p /usr/local/share/ca-certificates/ && \ ln -sf \ |