Dockerfile 115 B

12345
  1. FROM centos
  2. COPY hello_world.sh /usr/
  3. RUN chmod +x /usr/hello_world.sh
  4. WORKDIR /usr/
  5. CMD [ "sh", "hello_world.sh" ]