mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-16 15:19:57 +00:00
Faster and more repeatable. As the Alpine edge package is not working, use pip. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
15 lines
193 B
Docker
15 lines
193 B
Docker
FROM alpine:3.4
|
|
|
|
RUN \
|
|
apk update && apk upgrade && \
|
|
apk add --no-cache \
|
|
curl \
|
|
e2fsprogs \
|
|
jq \
|
|
python \
|
|
py-pip \
|
|
syslinux \
|
|
&& true
|
|
|
|
RUN pip install -U awscli
|