I had the same issue in Dockerfile
, then I used
ARG DEBIAN_FRONTEND=noninteractive
after base image and it works for me:
Example Dockerfile:
FROM ubuntu
ARG DEBIAN_FRONTEND=noninteractive
I had the same issue in Dockerfile
, then I used
ARG DEBIAN_FRONTEND=noninteractive
after base image and it works for me:
Example Dockerfile:
FROM ubuntu
ARG DEBIAN_FRONTEND=noninteractive