I'm trying to automate a creation of a development Docker image using docker build command with appropriate Dockerfile. One of the scripts that I need to run in a RUN command wants the user to click through and read their license agreement. Thus there are two questions:
- Where is the output of all the
RUNcommands in aDockerfile? - What solution is possible to interact with the aforementioned command? Right now the
docker buildcommand just gets stuck asking user for input in an infinite loop.