-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from CiscoSecurity/release-2.0.2
Release 2.0.2
- Loading branch information
Showing
9 changed files
with
478 additions
and
33 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
FROM alpine:3.14 | ||
LABEL maintainer="Ian Redden <[email protected]>" | ||
|
||
ENV PIP_IGNORE_INSTALLED 1 | ||
|
||
# install packages we need | ||
RUN apk update && apk add --no-cache musl-dev openssl-dev gcc py3-configobj \ | ||
supervisor git libffi-dev uwsgi-python3 uwsgi-http jq syslog-ng uwsgi-syslog \ | ||
supervisor libffi-dev uwsgi-python3 uwsgi-http jq syslog-ng uwsgi-syslog \ | ||
py3-pip python3-dev | ||
|
||
# do the Python dependencies | ||
ADD code /app | ||
RUN pip3 install -r /app/requirements.txt | ||
ADD code/Pipfile code/Pipfile.lock / | ||
RUN set -ex && pip install --no-cache-dir --upgrade pipenv && \ | ||
pipenv install --system | ||
RUN chown -R uwsgi.uwsgi /etc/uwsgi | ||
|
||
# copy over scripts to init | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[[source]] | ||
url = "https://pypi.org/simple" | ||
verify_ssl = true | ||
name = "pypi" | ||
|
||
[packages] | ||
cryptography = "==3.3.2" | ||
Flask = "==2.0.1" | ||
marshmallow = "==3.12.1" | ||
requests = "==2.25.1" | ||
PyJWT = "==2.1.0" | ||
|
||
[dev-packages] | ||
flake8 = "==3.9.2" | ||
coverage = "==5.5" | ||
pytest = "==6.2.4" | ||
freezegun = "==1.1.0" | ||
|
||
[requires] | ||
python_version = "3.9" |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
{"VERSION": "2.0.1","NAME": "Gigamon ThreatINSIGHT"} | ||
{ | ||
"VERSION": "2.0.2", | ||
"NAME": "Gigamon ThreatINSIGHT" | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters