How to fill user input for interactive command for "RUN" command? How to fill user input for interactive command for "RUN" command? docker docker

How to fill user input for interactive command for "RUN" command?


Did you try to disable it?

FROM ubuntu:19.04ENV DEBIAN_FRONTEND noninteractiveRUN apt update && apt install -y tcl


This worked for me.

ENV TZ=Asia/Kolkata \    DEBIAN_FRONTEND=noninteractiveRUN apt-get update && \    apt-get install tzdata