You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docker/Dockerfile.env
+8-18Lines changed: 8 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,11 @@
1
-
FROM ubuntu:22.04
1
+
FROM ghcr.io/smartobjectoriented/so3-toolchains
2
+
3
+
ENV DEBIAN_FRONTEND=noninteractive
4
+
ENV TZ=UTC
2
5
3
6
RUN dpkg --add-architecture i386
4
7
RUN apt update
5
-
RUN apt install libc6:i386 libncurses5:i386 libstdc++6:i386 -y
8
+
RUN apt install libc6:i386 libncurses6:i386 libstdc++6:i386 -y
6
9
RUN apt install lib32z1-dev -y
7
10
RUN apt install zlib1g:i386 -y
8
11
RUN apt install pkg-config libgtk2.0-dev bridge-utils -y
@@ -13,35 +16,22 @@ RUN apt install fdisk -y
13
16
RUN apt install libncurses-dev -y
14
17
RUN apt install flex bison -y
15
18
16
-
RUN apt install gcc-arm-none-eabi -y
17
19
RUN apt install wget unzip -y
18
20
RUN apt install python3-venv -y
19
21
RUN apt install ninja-build -y
20
22
RUN apt install git -y
21
23
RUN apt install cmake -y
22
24
RUN apt install python3-pip -y
23
25
24
-
RUN pip3 install pcpp
25
-
26
-
# Download aarch64-none-linux-gnu toolchain
27
-
RUN wget https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu-a/10.3-2021.07/binrel/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu.tar.xz
28
-
RUN tar -xvf gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu.tar.xz
29
-
RUN rm gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu.tar.xz
0 commit comments