We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b3a205 commit f24e7a4Copy full SHA for f24e7a4
dockerfiles/gcc/11/Dockerfile
@@ -0,0 +1,10 @@
1
+FROM ubuntu:22.04
2
+
3
+# installing requirements to get and extract prebuilt binaries
4
+RUN apt-get update
5
+RUN apt-get install -y gcc-11 g++-11
6
+RUN rm -rf /var/lib/apt/lists/*
7
8
+# symlinks
9
+RUN ln -s /usr/bin/aarch64-linux-gnu-gcc-11 /usr/bin/gcc
10
+RUN ln -s /usr/bin/aarch64-linux-gnu-g++-11 /usr/bin/g++
dockerfiles/gcc/metadata.json
@@ -0,0 +1,4 @@
+{
+ "pushLatest": true,
+ "latestTag": "11"
+}
0 commit comments