> ## 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.

# hadolint/DL3004

> Do not use sudo.

Do not use sudo.

| Property | Value    |
| -------- | -------- |
| Severity | Error    |
| Category | Security |
| Default  | Enabled  |

## Description

Do not use `sudo` as it leads to unpredictable behavior. Use a tool like [gosu](https://github.com/tianon/gosu) to enforce root.

## Examples

### Problematic code

```dockerfile theme={null}
FROM busybox
RUN sudo apt-get install
```

### Correct code

```dockerfile theme={null}
FROM busybox
RUN apt-get install
```

## Reference

* [hadolint/DL3004](https://github.com/hadolint/hadolint/wiki/DL3004)
