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