I'm trying to update the Curl version to the latest in a Dockerfile using an nginx Alpine image, but I think I'm doing something wrong, because when I enter the container and run a curl --version, it returns version 7.79 and not version 7.85.0 which is the latest.
FROM nginx:1.20.2-alpine
RUN apk update \
apk --no-cache add curl