I want to use ondrej ppa to upgrade php version in ubuntu server. I have connected to internet connection.
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:ondrej/php
I tried and got an error:
Cannot add PPA: 'ppa:ondrej/ubuntu/php'
'ondrej' user or team does not exist
I had tried using -E
in the command and the error is the same.
about the proxy setting, I do not really understand. I do not know how to adjust the setting according the answer in here
I also tried this:
RUN apt-get -y install locales
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
RUN add-apt-repository -y ppa:ondrej/php
but the result is the same, the error cannot add ppa:ondrej
Thank you