I would like to build up debian with docker. But although I can manage to start docker previosly, I couldn’t start my docker. And when I was trying compose my docker, it gives error like ‘http://packages.sury.org/php buster InRelease Clearsigned file isn’t valid, got ‘NOSPLIT’ (does the network require authentication?)’.. Can you me an idea? I’ m not much experienced about docker. Thank you in advance..
<code>FROM debian:buster-slim
WORKDIR /var/www/html/
ENV DEBIAN_FRONTEND noninteractive
ENV APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1
RUN apt-get update
&& apt-get upgrade -y
&& apt-get dist-upgrade -y
&& apt-get -y install apt-transport-https wget gnupg2
RUN wget -q http://packages.sury.org/php/apt.gpg -O- | apt-key add -
RUN echo "deb http://packages.sury.org/php/ buster main" | tee /etc/apt/sources.list.d/php.list
RUN apt-get update
</code>
<code>FROM debian:buster-slim
WORKDIR /var/www/html/
ENV DEBIAN_FRONTEND noninteractive
ENV APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1
RUN apt-get update
&& apt-get upgrade -y
&& apt-get dist-upgrade -y
&& apt-get -y install apt-transport-https wget gnupg2
RUN wget -q http://packages.sury.org/php/apt.gpg -O- | apt-key add -
RUN echo "deb http://packages.sury.org/php/ buster main" | tee /etc/apt/sources.list.d/php.list
RUN apt-get update
</code>
FROM debian:buster-slim
WORKDIR /var/www/html/
ENV DEBIAN_FRONTEND noninteractive
ENV APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1
RUN apt-get update
&& apt-get upgrade -y
&& apt-get dist-upgrade -y
&& apt-get -y install apt-transport-https wget gnupg2
RUN wget -q http://packages.sury.org/php/apt.gpg -O- | apt-key add -
RUN echo "deb http://packages.sury.org/php/ buster main" | tee /etc/apt/sources.list.d/php.list
RUN apt-get update
2