Files
linuxkit/alpine/cloud/Dockerfile.ami
Nathan LeClaire abb968c538 Add AWS build support
Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
2016-07-18 11:08:44 -07:00

19 lines
290 B
Docker

FROM alpine
RUN apk add --update \
python \
py-pip \
bash \
curl \
e2fsprogs \
jq \
syslinux
RUN pip install -U awscli
RUN mkdir -p /scripts
WORKDIR /scripts
COPY ./build-common.sh .
COPY ./aws/common.sh .
COPY ./aws/bake-ami.sh .
ENTRYPOINT ["./bake-ami.sh"]