mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-26 17:23:35 +00:00
16 lines
258 B
Docker
16 lines
258 B
Docker
FROM alpine:edge
|
|
|
|
MAINTAINER Justin Cormack <justin.cormack@unikernel.com>
|
|
|
|
COPY repositories /etc/apk
|
|
|
|
RUN apk update && apk upgrade && apk add e2fsprogs docker
|
|
|
|
COPY etc /etc/
|
|
|
|
RUN \
|
|
setup-timezone -z UTC && \
|
|
ln -s /bin/busybox /init
|
|
|
|
CMD ["/bin/sh"]
|