How to correctly use apk in Dockerfile
In Dockerfile
s you should always use apk
with --no-cache
to prevent extra files being deposited on the containers, for example:
example.sh
FROM alpine:3.17
RUN apk add --no-cache python3-dev
Check out similar posts by category:
Alpine Linux, Docker
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow