FROM ubuntu:latest
VOLUME /myVol
RUN echo "Hello World" > /myVol/message.txt
CMD cat /myVol/message.txt
When I run the container (after a successful image build), I get "Container cannot find file in volume- "No such file or directory". When I open an interactive session to the container, I see the volume, but no file (from the RUN echo..) in it. Why?