mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-06 12:29:47 +00:00
19 lines
314 B
Docker
19 lines
314 B
Docker
FROM golang:alpine
|
|
|
|
RUN apk add --update \
|
|
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"]
|