We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b668aa6 commit 5790ea3Copy full SHA for 5790ea3
Dockerfile
@@ -0,0 +1,17 @@
1
+FROM python:3.9-slim
2
+
3
+LABEL "com.github.actions.name"="Snazzy-Linter"
4
+LABEL "com.github.actions.description"="Automatic code reviewer for GitHub PRs."
5
+LABEL "com.github.actions.icon"="code"
6
+LABEL "com.github.actions.color"="gray-dark"
7
8
+LABEL "repository"="https://github.com/rbob86/lookml-linter/tree/main/linter/rules"
9
+LABEL "homepage"="https://github.com/rbob86/lookml-linter"
10
+LABEL "maintainer"="Eric"
11
12
+RUN python -m pip install --upgrade pip
13
+RUN pip install looker-sdk
14
+RUN pip install pyyaml
15
+RUN pip install jsonschema
16
+RUN pip install pytest
17
+RUN pip install lkml
0 commit comments