Last user should not be root

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/no-root-user

Language: Docker

Severity: Warning

Category: Security

Description

Do not use root as the last user because your container runs with the root user. Always use a user with lower privileges.

Non-Compliant Code Examples

CMD foo
USER plop
CMD plip
USER root

Compliant Code Examples

CMD foo
USER root
CMD plip
USER normaluser
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis