Use debian:12 base image because apparently we have crazy runtime deps
All checks were successful
/ build-container (push) Successful in 5m30s
All checks were successful
/ build-container (push) Successful in 5m30s
This commit is contained in:
parent
34a8ed8081
commit
d03734892d
1 changed files with 2 additions and 1 deletions
|
@ -5,6 +5,7 @@ COPY . /src
|
||||||
WORKDIR /src
|
WORKDIR /src
|
||||||
RUN cargo build --release
|
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
|
COPY --from=build /src/target/release/matrix-meshtastic-bridge /matrix-meshtastic-bridge
|
||||||
CMD ["/matrix-meshtastic-bridge"]
|
CMD ["/matrix-meshtastic-bridge"]
|
||||||
|
|
Loading…
Reference in a new issue