Update curl and libcurl to latest version in Docker in NodeJS app
Dockerfile for my NodeJS application looks like the following FROM node:14-alpine AS build # Install necessary packages using the 'apk' package manager RUN apk update && apk add --no-cache wget build-base openssl-dev # Install a more recent version of curl…