Skip to content

Commit f8f5956

Browse files
authored
Remove openssl package from the image (#102)
1 parent 972cf01 commit f8f5956

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

image/Dockerfile.scanner

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ SHELL ["/bin/sh", "-o", "pipefail", "-c"]
55
# Scanner requires the following binaries.
66
RUN apk update && \
77
apk --no-cache add \
8-
ca-certificates \
9-
openssl \
10-
xz \
8+
ca-certificates xz \
119
&& apk --repository "http://nl.alpinelinux.org/alpine/3.10/community" --no-cache add rpm \
1210
&& apk --purge del apk-tools;
1311

image/Dockerfile.scanner.rhel

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ SHELL ["/bin/sh", "-o", "pipefail", "-c"]
44

55
# Scanner requires the following binaries.
66
RUN yum update -y --disableplugin=subscription-manager && \
7-
yum -y install ca-certificates openssl xz
7+
yum -y install ca-certificates xz
88

99
COPY ./bin/scanner /
1010

0 commit comments

Comments
 (0)