mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-18 14:26:02 +00:00
This should improve portability, be more palatable for future distribution, and enable lower-level control. Addresses #8.
11 lines
156 B
Docker
11 lines
156 B
Docker
FROM alpine:3.3
|
|
|
|
RUN apk update && apk upgrade && apk add alpine-sdk
|
|
|
|
RUN mkdir -p /transfused
|
|
WORKDIR /transfused
|
|
|
|
COPY . /transfused
|
|
|
|
RUN make transfused
|