-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ecce02
commit 2e04564
Showing
2 changed files
with
37 additions
and
30 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# | ||
# Dockerfile for arm64 build | ||
# | ||
FROM ubuntu:24.04 | ||
RUN apt-get update | ||
RUN apt-get install -y build-essential cmake git python3 python3-pip python3-venv | ||
|
||
WORKDIR /home/build-dir | ||
|
||
COPY . . | ||
RUN cmake -S . -B build | ||
RUN cmake --build build -j10 | ||
WORKDIR /home/build-dir/build | ||
RUN ctest --output-on-failure | ||
WORKDIR /home/build-dir |