2024-09-26 16:58:51 +00:00
|
|
|
FROM amd64/debian:trixie as builder
|
2022-08-24 23:02:16 +00:00
|
|
|
|
|
|
|
ARG VERSION
|
|
|
|
WORKDIR /root
|
|
|
|
|
|
|
|
RUN apt-get update && \
|
2024-09-26 16:58:51 +00:00
|
|
|
apt-get install -y wget
|
2022-08-24 23:02:16 +00:00
|
|
|
|
2024-09-26 16:58:51 +00:00
|
|
|
RUN wget https://github.com/element-hq/element-web/releases/download/${VERSION}/element-${VERSION}.tar.gz && \
|
|
|
|
tar xf element-${VERSION}.tar.gz && \
|
|
|
|
mv element-${VERSION}/ riot/
|
|
|
|
|
|
|
|
# Le conteneur de superboum contient uniquement un serveur web de 5 lignes.
|
|
|
|
# Ca vous ennuie ? On peut publier Riot dans un bucket web Garage, tkt, ça sera Tricot qui servira.
|
2022-08-24 23:02:16 +00:00
|
|
|
FROM superboum/amd64_webserver:v3
|
|
|
|
COPY --from=builder /root/riot /srv/http
|