diff options
author | bloodstalker <thabogre@gmail.com> | 2020-12-28 18:10:31 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2020-12-28 18:10:31 +0000 |
commit | e6cd644e0c73d9efa21cef78c159a84f7a29fa43 (patch) | |
tree | 1b40bb003aef14940981a9501f80fb54eee306cb /matrix | |
parent | update (diff) | |
download | dockerimages-e6cd644e0c73d9efa21cef78c159a84f7a29fa43.tar.gz dockerimages-e6cd644e0c73d9efa21cef78c159a84f7a29fa43.zip |
added the matrix client docker
Diffstat (limited to 'matrix')
-rw-r--r-- | matrix/Dockerfile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/matrix/Dockerfile b/matrix/Dockerfile new file mode 100644 index 0000000..a84e71b --- /dev/null +++ b/matrix/Dockerfile @@ -0,0 +1,9 @@ +FROM debian:bullseye-slim AS builder +RUN apt update && apt upgrade -y +RUN apt install -y golang libolm-dev gcc g++ git +WORKDIR /root +RUN git clone https://github.com/tulir/gomuks.git && cd gomuks && go build + +FROM debian:bullseye-slim +COPY --from=builder /root/gomuks/gomuks /root/gomuks +ENTRYPOINT ["gomuks"] |