Add production Makefile

This commit is contained in:
2025-12-03 09:43:04 +01:00
parent 4110f4d063
commit 6392c0a2c7
10 changed files with 165 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
FROM debian:bookworm-slim
RUN apt-get update \
&& apt-get install -y libcurl4 libsqlite3-0 \
&& rm -rf /var/lib/apt/lists/*
COPY matrixgw_backend /usr/local/bin/matrixgw_backend
ENTRYPOINT ["/usr/local/bin/matrixgw_backend"]