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 f24e7a4 commit 414c384Copy full SHA for 414c384
dockerfiles/clang/14/Dockerfile
@@ -1,6 +1,6 @@
1
FROM ubuntu:22.04
2
3
-# installing requirements to get and extract prebuilt binaries
+# installing clang & clang++
4
RUN apt-get update
5
RUN apt-get install -y clang-14 lld-14
6
RUN rm -rf /var/lib/apt/lists/*
dockerfiles/python/3.10/Dockerfile
@@ -0,0 +1,9 @@
+FROM ubuntu:22.04
+
+# installing python
+RUN apt-get update
+RUN apt-get install -y python3.10
+RUN rm -rf /var/lib/apt/lists/*
7
8
+# symlinks
9
+RUN ln -s /usr/bin/python3.10 /usr/bin/python3
dockerfiles/python/metadata.json
@@ -1,4 +1,4 @@
{
"pushLatest": true,
- "latestTag": "3.7"
+ "latestTag": "3.10"
}
0 commit comments