mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-26 10:37:02 +00:00
11 lines
217 B
Docker
11 lines
217 B
Docker
FROM alpine:edge
|
|
|
|
MAINTAINER Justin Cormack <justin.cormack@unikernel.com>
|
|
|
|
COPY repositories /etc/apk/repositories
|
|
COPY motd hostname /etc/
|
|
|
|
RUN apk update && apk upgrade && apk add e2fsprogs docker
|
|
|
|
CMD ["/bin/sh"]
|