mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-12 17:40:53 +00:00
Also tidy up some of the coding style to be more Linux kernel style which most of the code already was. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
11 lines
163 B
Docker
11 lines
163 B
Docker
FROM alpine:3.3
|
|
|
|
RUN apk update && apk upgrade && apk add alpine-sdk util-linux-dev
|
|
|
|
RUN mkdir -p /nc-vsock
|
|
WORKDIR /nc-vsock
|
|
|
|
COPY . /nc-vsock
|
|
|
|
RUN make nc-vsock
|