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
Add an apt-get install config that will define the base of installing apt packages with cache management.
apt-get install
Run apt-get update and apt-get install.
apt-get update
Let the user define an ARG with the package list to install.
ARG
In the documentation, recommand the use of the >- yaml block operator and to order the packages alphabetically for more readability:
>-
packages: >- curl openssl
Is equivalent to:
packages: curl openssl
Cache as many folders as possible.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What should be done
Add an
apt-get install
config that will define the base of installing apt packages with cache management.Technical recommandation
Run
apt-get update
andapt-get install
.Let the user define an
ARG
with the package list to install.In the documentation, recommand the use of the
>-
yaml block operator and to order the packages alphabetically for more readability:Is equivalent to:
Ecological concerns
Cache as many folders as possible.
Is this task linked with any other ?
The text was updated successfully, but these errors were encountered: