如何在 dockerfile 中为给定命令提供 JSON 符号语法以用于 linting 目的?
How to give JSON notation syntax for given command in dockerfile for linting purpose?
您能否为以下 Dockerfile Linting 命令提供 JSON 符号语法?
CMD exec gunicorn --bind :$PORT --workers 1 --threads 8 app:app
从 你需要提供这样的命令
CMD ["sh", "-c", "exec gunicorn --bind :$PORT --workers 1 --threads 8 app:app"]
您能否为以下 Dockerfile Linting 命令提供 JSON 符号语法?
CMD exec gunicorn --bind :$PORT --workers 1 --threads 8 app:app
从
CMD ["sh", "-c", "exec gunicorn --bind :$PORT --workers 1 --threads 8 app:app"]