Dockerfile操作

参考hello-world的Dockerfile写了一个简单的类似的:

Dockerfile:

FROM ubuntu
COPY hello.sh /
CMD ["sh", "/hello.sh"]

hello.sh:

echo "Hello, hongmao"

参考资料