mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-27 02:30:29 +00:00
Better split between content and tools. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
13 lines
135 B
Docker
13 lines
135 B
Docker
FROM alpine:3.5
|
|
|
|
RUN \
|
|
apk update && apk upgrade && \
|
|
apk add \
|
|
docker \
|
|
tar \
|
|
&& true
|
|
|
|
COPY . .
|
|
|
|
ENTRYPOINT ["/mkimage.sh"]
|