Open PeterDaveHello opened 3 days ago
Replace apk update && apk add with apk add --update to combine two operations into one and prevent temporary Alpine package index files (/var/cache/apk/*) from being left in the image.
apk update && apk add
apk add --update
/var/cache/apk/*
Replace
apk update && apk add
withapk add --update
to combine two operations into one and prevent temporary Alpine package index files (/var/cache/apk/*
) from being left in the image.