mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-17 07:26:22 +00:00
20 lines
325 B
Docker
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"]
|