Following is my docker file.
FROM python:3
RUN apt-get -y update
RUN mkdir /data
COPY . /data
WORKDIR /data
USER root
ENTRYPOINT ["/bin/bash", "/data/getString.sh"]
Following is my bash script
#!/bin/bash
echo 'Hello World'
I build the docker file using the command:
docker build --no-cache -t test6:1
The command is executed successfully but in the end, I get the following message:
Use 'docker scan' to run Snyk tests against images to find vulnerabilities and learn how to fix them
But I don't see the bash script getting executed anywhere.
How do I fix this?