Built with from Grav and Hugo
参考hello-world的Dockerfile写了一个简单的类似的:
hello-world
Dockerfile:
FROM ubuntu COPY hello.sh / CMD ["sh", "/hello.sh"]
hello.sh:
echo "Hello, hongmao"
参考资料 Dockerfile reference | Docker Documentation
参考资料