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