Dockerfile i have below for y-ppa-manager
package installation.
FROM ubuntu:18.04
RUN add-apt-repository ppa:webupd8team/y-ppa-manager
RUN apt-get update -y
RUN apt-get install -y y-ppa-manager
But during docker image build time it fails with below errors.
RUN add-apt-repository ppa:webupd8team/y-ppa-manager
---> Running in 2474e6f3252a
Y PPA Manager
Info: http://www.webupd8.org/2010/11/y-ppa-manager-easily-search-add-remove.html
This PPA is for Y PPA Manager and also includes the latest YAD for the supported Ubuntu versions (YAD is a dependency for Y PPA Manager): http://sourceforge.net/p/yad-dialog/
More info: https://launchpad.net/~webupd8team/+archive/ubuntu/y-ppa-manager
'Error reading https://keyserver.ubuntu.com/pks/lookup?op=get&options=mr&exact=on&search=0x7B2C3B0889BF5709A105D03AC2518248EEA14886: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:852)'
The command '/bin/sh -c add-apt-repository ppa:webupd8team/y-ppa-manager' returned a non-zero code: 1
For this error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:852)
have already installed company proxy certificate on host machine.
Do I have to add certificate inside container?
Any idea what I'm missing here? Any help would be helpful. Thanks.
FROM ubuntu:18.04
However on my particular system it doesn't work. – user4948798 Sep 23 '22 at 08:15dockerfile
still i'm facing the same problem. – user4948798 Sep 23 '22 at 09:32corporate internet proxy server
at present i'm working with our network admin department members. – user4948798 Sep 23 '22 at 10:10Dockerfile
i could able to get rid of those errorsADD Proxy-Certificate.crt /usr/local/share/ca-certificates/Proxy-Certificate.crt
RUN update-ca-certificates
Thanks a lot for your continues support. – user4948798 Sep 24 '22 at 05:34