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

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/*
```