How to run the bash when we trigger docker run command without -it? – CentOS
I have a Dockerfile as follow: FROM centos RUN mkdir work RUN yum install -y python3 java-1.8.0-openjdk java-1.8.0-openjdk-devel tar git wget zip RUN pip install pandas RUN pip install boto3 RUN pip install pynt WORKDIR ./work CMD ["bash"] where i…