How to correctly use apk in Dockerfile

In Dockerfiles 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