mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-06 17:44:01 +00:00
18 lines
279 B
Docker
18 lines
279 B
Docker
FROM alpine
|
|
|
|
RUN apk add --update \
|
|
python \
|
|
py-pip \
|
|
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"]
|