mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-06 04:44:00 +00:00
11 lines
156 B
Docker
11 lines
156 B
Docker
FROM alpine:3.4
|
|
|
|
RUN apk update && apk upgrade && apk add build-base
|
|
|
|
RUN mkdir -p /transfused
|
|
WORKDIR /transfused
|
|
|
|
COPY . /transfused
|
|
|
|
RUN make transfused
|