mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-07 23:47:36 +00:00
This is part of the new moby tool work to get a minimal system up that can be expanded. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
12 lines
148 B
Docker
12 lines
148 B
Docker
FROM alpine:3.5
|
|
|
|
RUN \
|
|
apk update && apk upgrade -a && \
|
|
apk add --no-cache \
|
|
dhcpcd \
|
|
e2fsprogs \
|
|
e2fsprogs-extra \
|
|
&& true
|
|
|
|
COPY . ./
|