We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13317e8 commit 435a8a0Copy full SHA for 435a8a0
Dockerfile
@@ -0,0 +1,16 @@
1
+FROM python:3-slim
2
+
3
+LABEL "com.github.actions.name"="VulnAlerts"
4
+LABEL "com.github.actions.description"="Daily customized CVE Alerts straight to your Slack Inbox for Free."
5
+LABEL "version"="1.0"
6
+LABEL "com.github.actions.icon"="shield"
7
+LABEL "com.github.actions.color"="blue"
8
+LABEL "repository"="https://github.com/y-mehta/vulnalerts"
9
+LABEL "homepage"="https://github.com/y-mehta/vulnalerts"
10
11
+COPY requirements.txt ./
12
+RUN pip install --no-cache-dir -r requirements.txt
13
14
+COPY . .
15
16
+ENTRYPOINT ["python main.py"]
0 commit comments