mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-05 12:24:47 +00:00
15 lines
201 B
Docker
15 lines
201 B
Docker
FROM alpine
|
|
|
|
RUN apk add --update \
|
|
python \
|
|
py-pip \
|
|
bash \
|
|
curl \
|
|
e2fsprogs \
|
|
jq \
|
|
syslinux
|
|
RUN pip install -U awscli
|
|
COPY aws/bake-ami.sh .
|
|
|
|
ENTRYPOINT ["./bake-ami.sh"]
|