Skip to content

Commit 435a8a0

Browse files
authored
Create Dockerfile
1 parent 13317e8 commit 435a8a0

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

Dockerfile

+16
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)