--no-cache
switch DOK-DL3019As of Alpine Linux 3.3 there exists a new --no-cache
option for apk
. It allows users to install packages with an index that is updated and used on-the-fly and not cached locally:
This avoids the need to use --update
and remove /var/cache/apk/*
when done installing packages.
FROM alpine:3.7
RUN apk update \
&& apk add foo=1.0 \
&& rm -rf /var/cache/apk/*
FROM alpine:3.7
RUN apk add --update foo=1.0
&& rm -rf /var/cache/apk/*
FROM alpine:3.7
RUN apk --no-cache add foo=1.0