This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# 注释: Dockerfile CMD指令
FROM busybox
WORKDIR /app
# 注意:只执行最后一个CMD
# CMD /bin/sh -c 'echo 我是CMD指令shell方式执行后写入的内容'
# CMD ["/bin/sh", "-c", "read -p 输入任意键退出容器 "]
# eCMD ["-c", "read -p 输入任意键退出容器 "]
ENTRYPOINT ["read", "-p xxxxxxxx"]
# ENTRYPOINT ["/bin/sh", "-c", "read -p 'Enter any key to exit the container' "]