aboutsummaryrefslogblamecommitdiffstats
path: root/matrix/Dockerfile
blob: a84e71bc958cf6b2f4c3146a0afb39d39e9ef175 (plain) (tree)
1
2
3
4
5
6
7
8
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"]