Попытка установить avro bin в docker. Продолжайте получать эту ошибку
E: Unable to locate package avro-bin
The command '/bin/sh -c add-apt-repository 'deb http://archive.ubuntu.com/ubuntu bionic universe' && apt-get install avro-bin jq' returned a non-zero code: 100
FROM maven:3.6.3-jdk-11
USER root
RUN adduser jenkins
RUN apt-get update && \
apt-get install -y software-properties-common
RUN apt-get update && apt-get install -y apt-transport-https
RUN add-apt-repository 'deb http://archive.ubuntu.com/ubuntu bionic universe' && \
apt-get install avro-bin jq
COPY jenkins-slave /usr/local/bin/jenkins-slave
RUN chown jenkins:jenkins /usr/local/bin/jenkins-slave
RUN chmod 777 /usr/local/bin/jenkins-slave
RUN chmod 777 /home/jenkins
WORKDIR /home/jenkins
USER jenkins
RUN ls -ltr /usr/local/bin/jenkins-slave
ENTRYPOINT ["/usr/local/bin/jenkins-slave"]