MatrixGW/Dockerfile

11 lines
213 B
Docker
Raw Permalink Normal View History

2025-03-04 19:32:56 +01:00
FROM debian:bookworm-slim
RUN apt-get update \
&& apt-get install -y libssl3 \
&& rm -rf /var/lib/apt/lists/*
COPY matrix_gateway /usr/local/bin/matrix_gateway
ENTRYPOINT ["/usr/local/bin/matrix_gateway"]