In my Dockerfile, I want to run 2 scripts.
I want once the first script ran successfully then only it will run another script because another script is consuming the output of the first script.
What changes do I need to make in Dockerfile to complete this task?
FROM ubuntu
WORKDIR /usr/bin/
COPY ./example.py .
RUN chmod +x example.py
ENTRYPOINT ["python3", "example.py"]
I want to include one move ENTRYPOINT to execute another script.