-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [CCTRI-2187] Add 404 error handling and warning to CTR_ENTITIES_LIMIT variable (#62) * Unit tests fix * [CCTRI-2187] Add 404 error handling and warning to CTR_ENTITIES_LIMIT variable * Removed Free Trial Link * Added Jenkinsfile * Fix autotest (#63) * [CCTRI-2739] Fix issues with adding module into organisation (#66) * [CCTRI-2427] Add warning and 403 error handling (#65) * Updated tips * Changed module name in constants.py file * [CCTRI-2670] - alpine & python version update (#64) * [CCTRI-2670] - alpine & python version update * install packages command update * Release 2.0.1 Co-authored-by: ceilingduster <[email protected]> Co-authored-by: YevhenLysen <[email protected]> Co-authored-by: YevhenLysen <[email protected]> Co-authored-by: Michelle Dougal <[email protected]>
- Loading branch information
1 parent
5ca69eb
commit 4671bea
Showing
10 changed files
with
33 additions
and
25 deletions.
There are no files selected for viewing
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,8 +1,10 @@ | ||
FROM alpine:3.13 | ||
FROM alpine:3.14 | ||
LABEL maintainer="Ian Redden <[email protected]>" | ||
|
||
# install packages we need | ||
RUN apk update && apk add --no-cache musl-dev openssl-dev gcc python3 py3-configobj python3-dev supervisor git libffi-dev uwsgi-python3 uwsgi-http jq nano syslog-ng uwsgi-syslog py3-pip | ||
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 \ | ||
py3-pip python3-dev | ||
|
||
# do the Python dependencies | ||
ADD code /app | ||
|
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,3 @@ | ||
@Library('softserve-jenkins-library@main') _ | ||
|
||
startPipeline() |
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
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,4 +1,4 @@ | ||
{ | ||
"VERSION": "2.0.0", | ||
"VERSION": "2.0.1", | ||
"NAME": "Google Chronicle" | ||
} |
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,10 +1,10 @@ | ||
google-api-python-client==1.7.11 | ||
google==2.0.3 | ||
Flask==1.1.2 | ||
marshmallow==3.11.1 | ||
Flask==2.0.1 | ||
marshmallow==3.12.1 | ||
requests==2.25.1 | ||
cryptography==3.3.2 | ||
pyjwt[crypto]==2.0.1 | ||
flake8==3.9.0 | ||
coverage==5.2.1 | ||
pytest==6.2.2 | ||
pyjwt[crypto]==2.1.0 | ||
flake8==3.9.2 | ||
coverage==5.5 | ||
pytest==6.2.4 |
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
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