-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Marcin Kozlowski <[email protected]>
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 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 |
---|---|---|
|
@@ -23,7 +23,7 @@ RUN wget https://golang.org/dl/go1.22.4.linux-amd64.tar.gz && \ | |
|
||
# Install Ruby gem and Python packages | ||
RUN gem install brakeman && \ | ||
python3 -m pip install pipenv bandit semgrep psycopg2 markupsafe==2.0.1 \ | ||
python3 -m pip install --use-feature=fast-deps pipenv bandit semgrep psycopg2 markupsafe==2.0.1 \ | ||
email_validator testresources checkov yara-scanner sqlalchemy===1.4.46 | ||
|
||
# Install Node.js package | ||
|
@@ -33,7 +33,7 @@ RUN npm install -g jshint | |
RUN mkdir -p /srv /root && \ | ||
--mount=type=ssh git clone [email protected]:topcodersonline-solutions/betterscan-ce /srv/betterscan && \ | ||
cd /srv/betterscan && \ | ||
pipenv install --system && \ | ||
pipenv install --system --use-feature=fast-deps && \ | ||
ln -s /srv/betterscan/quantifiedcode/settings/default.yml /srv/betterscan/settings.yml && \ | ||
--mount=type=ssh git clone -b checkmate3 [email protected]:topcodersonline-solutions/checkmate-ce /checkmate && \ | ||
cd /checkmate && \ | ||
|