skip to Main Content

Debian – readlink: unrecognized option: m

I have the following Dockerfile. FROM debian:10.7 ARG DEBIAN_FRONTEND=noninteractive RUN echo "Acquire::http::Proxy "${HTTP_PROXY}";" >> /etc/apt/apt.conf.d/50proxy && echo "Acquire::https::Proxy "${HTTPS_PROXY}";" >> /etc/apt/apt.conf.d/50proxy # Install coreutils, dialog, apt-utils since busybox seems to lack them RUN apt-get update && apt-get install -y coreutils…

VIEW QUESTION
Back To Top
Search