mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-11 18:32:08 +08:00
10 lines
139 B
Text
10 lines
139 B
Text
|
FROM debian:latest
|
||
|
|
||
|
RUN apt-get update && apt-get -y install systemd procps
|
||
|
|
||
|
WORKDIR /root/
|
||
|
|
||
|
COPY netclient .
|
||
|
|
||
|
CMD ["./netclient checkin"]
|