-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #120 from cyclops1982/multiline-apt
Multiline the apt-get install in main.yml
- Loading branch information
Showing
2 changed files
with
37 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
FROM arm32v5/debian:bookworm | ||
RUN apt-get update | ||
RUN apt-get -yy install build-essential git cmake ninja-build nlohmann-json3-dev pkg-config libssl-dev xxd | ||
RUN apt-get -yy install python3-pip | ||
RUN apt-get -yy install \ | ||
build-essential \ | ||
git \ | ||
cmake \ | ||
ninja-build \ | ||
nlohmann-json3-dev \ | ||
pkg-config \ | ||
libssl-dev \ | ||
python3-pip \ | ||
xxd | ||
RUN pip install --break-system-packages meson | ||
RUN git config --global --add safe.directory '*' # this makes meson's vcs_tag() work |