mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-17 01:31:56 +00:00
The daemons allow proper shutdown of a VM, heartbeats, inquiring and setting the network configuratio etc etc. They are only started with running in a Hyper-V VM Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
11 lines
153 B
Docker
11 lines
153 B
Docker
FROM alpine:3.3
|
|
|
|
RUN apk update && apk upgrade && apk add alpine-sdk linux-headers
|
|
|
|
RUN mkdir -p /hvtools
|
|
WORKDIR /hvtools
|
|
|
|
COPY src /hvtools/
|
|
|
|
RUN make
|