2

sudo apt-get update

W: Failed to fetch https://get.docker.com/ubuntu/dists/docker/main/binary-amd64/Packages server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none

openssl s_client -connect get.docker.com:443 -tls1 -debug => http://paste.ubuntu.com/10687412

my machine is Ubuntu 14.10

any ideas?

user3538553
  • 1,443
  • 3
  • 15
  • 21

1 Answers1

-2

Scratched my head for couple of days, eventually this worked

USER root
RUN rm -rf /var/lib/apt/lists/*
RUN rm -rf /etc/apt/sources.list.d/*

RUN apt-get update

Abhishek Galoda
  • 2,753
  • 24
  • 38