Fix missing \ in about-arc.md (#2866)

This commit is contained in:
Lukas Beranek 2023-09-07 13:52:25 +02:00 committed by GitHub
parent 564c112b1a
commit c8216e1396
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ If there is a need to include packages in the runner image for which there is no
FROM summerwind/actions-runner:latest
RUN sudo apt-get update -y \
&& sudo apt-get install $YOUR_PACKAGES
&& sudo apt-get install $YOUR_PACKAGES \
&& sudo rm -rf /var/lib/apt/lists/*
```