mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-05 05:07:17 +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
|