mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-25 07:42:36 +00:00
- now supports image pull and run end to end - update runc to last version before spec update fix #1302 - remove ext2 utils from init Signed-off-by: Justin Cormack <justin.cormack@docker.com>
11 lines
159 B
Docker
11 lines
159 B
Docker
FROM alpine:3.5
|
|
|
|
RUN \
|
|
apk --no-cache update && \
|
|
apk --no-cache upgrade -a && \
|
|
apk --no-cache add \
|
|
dhcpcd \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
COPY . ./
|