-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Kunlin Yu <[email protected]>
- Loading branch information
Showing
4 changed files
with
38 additions
and
5 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
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,25 @@ | ||
FROM ubuntu:24.04 | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt-get update | ||
|
||
# install basic tools | ||
RUN apt-get install -y sudo | ||
RUN apt-get install -y curl wget iputils-ping | ||
RUN apt-get install -y build-essential pkg-config | ||
RUN apt-get install -y file gdb | ||
RUN apt-get install -y git cmake repo | ||
RUN apt-get install -y vim tree silversearcher-ag | ||
|
||
# install toolchain | ||
RUN apt-get install -y gcc-aarch64-linux-gnu | ||
RUN apt-get install -y g++-aarch64-linux-gnu | ||
|
||
# install dependencies | ||
RUN apt-get install -y flex bison++ | ||
RUN apt-get install -y libgflags-dev libgoogle-glog-dev libgtest-dev | ||
RUN apt-get install -y libgeos++-dev | ||
|
||
USER ubuntu | ||
WORKDIR /home/ubuntu/ |
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