We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here an exemple of Dockerfile part the way I like to write:
RUN true \ && apt-get --quiet update --yes \ && apt-get --quiet install --yes --no-install-recommends \ curl \ dos2unix \ git \ htop \ iftop \ iotop \ jq \ make \ netcat-openbsd \ python3-pip \ vim \ && true
I find it really efficient, merge-friendly, extendable, etc. So I want to keep it this way.
If I enable autoformatting and this extension, on save these lines are automatically rewriten to:
echo "Acquire::https::Proxy \"http://nexus.tls.renault.fr:911\"\;" >> /etc/apt/apt.conf \ RUN true \ && apt-get --quiet update --yes \ && apt-get --quiet install --yes --no-install-recommends \ curl \ dos2unix \ git \ htop \ iftop \ iotop \ jq \ make \ netcat-openbsd \ python3-pip \ vim \ && true
The text was updated successfully, but these errors were encountered:
@gsemet Thank you for taking the time to open this request. I have opened rcjsuen/dockerfile-utils#62 to track this.
Have a nice day!
Sorry, something went wrong.
thanks!
Successfully merging a pull request may close this issue.
Here an exemple of Dockerfile part the way I like to write:
RUN true \ && apt-get --quiet update --yes \ && apt-get --quiet install --yes --no-install-recommends \ curl \ dos2unix \ git \ htop \ iftop \ iotop \ jq \ make \ netcat-openbsd \ python3-pip \ vim \ && true
I find it really efficient, merge-friendly, extendable, etc. So I want to keep it this way.
If I enable autoformatting and this extension, on save these lines are automatically rewriten to:
The text was updated successfully, but these errors were encountered: