From fa59f4fbcd3420d64b7e02b159ba80a8c417cbd1 Mon Sep 17 00:00:00 2001 From: Stefo Date: Mon, 29 Apr 2024 12:44:03 +0200 Subject: [PATCH] Add necessary libs to Dockerfile --- device/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/device/Dockerfile b/device/Dockerfile index 4d35fd0..13531c6 100644 --- a/device/Dockerfile +++ b/device/Dockerfile @@ -1,8 +1,9 @@ FROM debian:bookworm-slim AS device LABEL "website"="https://github.com/mate-dev/mmrelaynode" -RUN apt-get update && apt-get install g++ -y +RUN apt-get update && apt-get -y install wget python3 g++ zip python3-venv git vim ca-certificates libgpiod-dev libyaml-cpp-dev libbluetooth-dev WORKDIR /bin ADD https://github.com/mate-dev/mmrelaynode/releases/latest/download/meshtasticd_linux_amd64 /bin/meshtasticd RUN chmod +x meshtasticd EXPOSE 4403 -ENTRYPOINT [ "sh", "-c", "meshtasticd" ] \ No newline at end of file +ENTRYPOINT [ "sh", "-c", "meshtasticd" ] +HEALTHCHECK NONE \ No newline at end of file