Launching a simple python script on an AWS ray cluster with docker
问题 I am finding it incredibly difficult to follow rays guidelines to running a docker image on a ray cluster in order to execute a python script. I am finding a lack of simple working examples. So I have the simplest docker file: FROM rayproject/ray WORKDIR /usr/src/app COPY . . CMD ["step_1.py"] ENTRYPOINT ["python3"] I use this to create can image and push this to docker hub. ("myimage" is just an example) docker build -t myimage . docker push myimage "step_1.py" just prints hello every second