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 fb5b495 commit 5b9f712Copy full SHA for 5b9f712
views/docker_base_images
@@ -0,0 +1,17 @@
1
+ID: docker_base_images
2
+Title: All Base Images
3
+Description: List of all Base Images across Dockerfiles in GitHub
4
+Query:
5
+ Engine: CloudQL-v0.0.1
6
+ QueryToExecute: |
7
+ SELECT
8
+ image,
9
+ COUNT(*) AS dockerfile_count
10
+FROM (
11
+ SELECT DISTINCT sha, jsonb_array_elements_text(images) AS image
12
+ FROM github_artifact_dockerfile
13
+) AS expanded
14
+GROUP BY image
15
+ORDER BY dockerfile_count DESC;
16
+
17
+Tags:
0 commit comments