Use debian:12 base image because apparently we have crazy runtime deps
All checks were successful
/ build-container (push) Successful in 5m30s

This commit is contained in:
Finn 2024-10-14 19:07:00 -07:00
parent 34a8ed8081
commit d03734892d

View file

@ -5,6 +5,7 @@ COPY . /src
WORKDIR /src
RUN cargo build --release
FROM scratch
FROM debian:12
RUN apt-get update && apt-get install -y libssl3 && rm -rf /var/lib/apt/lists
COPY --from=build /src/target/release/matrix-meshtastic-bridge /matrix-meshtastic-bridge
CMD ["/matrix-meshtastic-bridge"]