I've been trying to have a docker file setup where it can install a specific ODBC driver I need in an application. I use the following commands:
- RUN cd /tmp/./client1201/
- RUN ./setup
and it runs the installer without any problem. The issue is that It requires user input in order to proceed with some steps.
Is there any way I can make this silent? If so, is this some docker specific feature? Or it actually requires some sort of support from the installer itself in order to achieve this?
Thanks for any assistance