11 lines
213 B
Docker
11 lines
213 B
Docker
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"]
|
|
|