This repository has been archived on 2023-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/docker/riotweb/Dockerfile
2020-05-05 15:59:00 +02:00

14 lines
378 B
Docker

FROM amd64/debian:stretch as builder
WORKDIR /root
ENV VERSION v1.6.0
RUN apt-get update && \
apt-get install -y wget && \
wget https://github.com/vector-im/riot-web/releases/download/${VERSION}/riot-${VERSION}.tar.gz && \
tar xf riot-${VERSION}.tar.gz && \
mv riot-${VERSION}/ riot/
FROM superboum/amd64_webserver:v3
COPY --from=builder /root/riot /srv/http