mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-17 19:16:18 +00:00
11 lines
163 B
Docker
11 lines
163 B
Docker
FROM alpine:3.4
|
|
|
|
RUN apk update && apk upgrade && apk add build-base util-linux-dev
|
|
|
|
RUN mkdir -p /nc-vsock
|
|
WORKDIR /nc-vsock
|
|
|
|
COPY . /nc-vsock
|
|
|
|
RUN make nc-vsock
|