Files
linuxkit/alpine/cloud/Dockerfile.azure
Nathan LeClaire 70cb4f82a2 Add Azure provider support
Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
2016-07-18 16:22:21 -07:00

20 lines
325 B
Docker

FROM golang:alpine
RUN apk add --update \
bash \
curl \
e2fsprogs \
syslinux \
multipath-tools \
git \
util-linux
RUN go get -u github.com/Microsoft/azure-vhd-utils-for-go
RUN mkdir /scripts
WORKDIR /scripts
COPY ./build-common.sh .
COPY ./azure/bake-azure.sh .
ENTRYPOINT ["./bake-azure.sh"]