Skip to main content

Documentation Index

Fetch the complete documentation index at: https://tally.wharflab.com/llms.txt

Use this file to discover all available pages before exploring further.

Do not use sudo.
PropertyValue
SeverityError
CategorySecurity
DefaultEnabled

Description

Do not use sudo as it leads to unpredictable behavior. Use a tool like gosu to enforce root.

Examples

Problematic code

FROM busybox
RUN sudo apt-get install

Correct code

FROM busybox
RUN apt-get install

Reference