Files
linuxkit/alpine/Dockerfile
Justin Cormack 64077e4e0a bring up networking
Signed-off-by: Justin Cormack <justin.cormack@unikernel.com>
2015-12-07 16:29:00 +00:00

17 lines
290 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 && \
rc-update add networking && \
ln -s /bin/busybox /init
CMD ["/bin/sh"]