Skip to content

Commit

Permalink
Add necessary libs to Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefo committed Apr 29, 2024
1 parent b53f9f8 commit fa59f4f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions device/Dockerfile
Original file line number Diff line number Diff line change
@@ -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" ]
ENTRYPOINT [ "sh", "-c", "meshtasticd" ]
HEALTHCHECK NONE

0 comments on commit fa59f4f

Please sign in to comment.