mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-02 02:02:50 +01:00
7ac4881609
This enables us to remove the following patterns that required a `rm -rf /var/cache/apk`: - `apk update` - `apk add --update` - `apk add --update-cache` Supported since alpine 3.3.
10 lines
130 B
Docker
10 lines
130 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk --no-cache add \
|
|
ca-certificates \
|
|
python \
|
|
py-pip \
|
|
&& pip install cli53
|
|
|
|
ENTRYPOINT [ "cli53" ]
|