'Container security/Twistlock scan Type OS, severity medium, Description openssl(used in libssl1.1, libcrypto1.1) version 1.1.1l-r0 has 1 vulnerability
We are using docker image azul/zulu-openjdk-alpine:13 for one of our java application.
We scan images using container security tool for vulnerabilities below is the issue detail.

Below is docker file. we are using azul/zulu-openjdk-alpine:13 jdk image
FROM azul/zulu-openjdk-alpine:13
RUN apk update && apk add --no-cache gcompat
RUN addgroup -S appname && adduser -S appname -G appname
USER appname
WORKDIR .
COPY target/appname-1.0.0.0.jar .
Please suggest how to fix this issue. I am new to docker and container security issue.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
