Prepare release generation

This commit is contained in:
2025-03-20 21:17:47 +01:00
parent c6757f477a
commit c967103a16
10 changed files with 169 additions and 8 deletions

View File

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