Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Metadata

ID: docker-best-practices/dnf-use-y

Language: Docker

Severity: Warning

Category: Best Practices

Description

When using dnf to install a package, make sure you use the -y flag to avoid your CI being blocked on a prompt.

Non-Compliant Code Examples

RUN dnf install httpd-2.4.46

Compliant Code Examples

RUN dnf install -y httpd-2.4.46