kopia lustrzana https://github.com/mate-dev/mmrelaynode
12 wiersze
333 B
Plaintext
12 wiersze
333 B
Plaintext
FROM frolvlad/alpine-glibc:glibc-2.34
|
|
|
|
RUN apk --update add --no-cache g++ shadow && \
|
|
groupadd -g 1000 mesh && useradd -ml -u 1000 -g 1000 mesh
|
|
|
|
ADD https://github.com/mate-dev/mmrelaynode/releases/latest/download/meshtasticd_linux_amd64 /usr/bin/meshtasticd
|
|
RUN chmod +x /usr/bin/meshtasticd
|
|
|
|
USER mesh
|
|
|
|
WORKDIR /home/mesh
|