Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__pycache__/
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM python:3

ARG GRAPH_QL_KEY
ARG JIRA_AUTH_KEY
ARG JIRA_URL
ARG JIRA_PROJECT_KEY
ENV ISSUE_LOG=./vulnerabilities_issues_created_log

COPY . /

RUN pip install -r requirements.txt

ENTRYPOINT [ "python3", "graph_ql.py", "${GRAPH_QL_KEY}", "${JIRA_AUTH_KEY}", "${JIRA_URL}", "${JIRA_PROJECT_KEY}", "${ISSUE_LOG}" ]
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
requests
pprint