aquasecurity / microscanner

Scan your container images for package vulnerabilities with Aqua Security
859 stars 108 forks source link

TLS handshake timeout error #31

Open JesperStromblad opened 5 years ago

JesperStromblad commented 5 years ago

Hi,

After receiving the token. I tested microscanner based on the instructions i received in the email.

For example, I added the following snippet to my Dockerfile:

FROM alpine
RUN apk add --no-cache ca-certificates && update-ca-certificates
ADD https://get.aquasec.com/microscanner .
RUN chmod +x microscanner
RUN ./microscanner <my-token>

However when i run the dockerfile, I get the following error

ERROR: failed fetching server information: request failed: Get https://microscanner.aquasec.com/api: net/http: TLS handshake timeout

My Configuration: Ubuntu 16.04.6 LTS Docker version 18.09.7, build 2d0083d

Thanks.