Skip to content

Commit 5790ea3

Browse files
authored
Create Dockerfile
adding a dockerfile
1 parent b668aa6 commit 5790ea3

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Dockerfile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)