This commit is contained in:
Ben Meadors
2022-11-07 13:28:37 -06:00
parent f0f5107a5d
commit b13eaee6b3
2 changed files with 12 additions and 21 deletions

View File

@@ -11,5 +11,6 @@ RUN . ~/.platformio/penv/bin/activate; cd firmware; sh ./bin/build-native.sh
FROM frolvlad/alpine-glibc
WORKDIR /root/
COPY --from=builder /firmware/release/meshtasticd_linux_amd64 ./
RUN apk --update add --no-cache g++
CMD ["./meshtasticd_linux_amd64"]
RUN apk --update add --no-cache g++ && \
apk add openssl
CMD sh -cx "./meshtasticd_linux_amd64 --hwid '$RANDOM'"