-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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 #3564 from DefectDojo/release/1.11.0
Release: Merge release into master from: release/1.11.0
- Loading branch information
Showing
238 changed files
with
178,381 additions
and
5,442 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 |
---|---|---|
|
@@ -2,4 +2,3 @@ | |
.gitignore | ||
*.md | ||
.env* | ||
**/local_settings.py |
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
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 |
---|---|---|
|
@@ -30,7 +30,7 @@ jobs: | |
with: | ||
args: -v -tpng ${{ steps.getfile.outputs.files }} | ||
- name: Push Local Changes | ||
uses: stefanzweifel/git-auto-commit-action@v4.7.2 | ||
uses: stefanzweifel/git-auto-commit-action@v4.8.0 | ||
with: | ||
commit_user_name: "PlantUML_bot" | ||
commit_user_email: "[email protected]" | ||
|
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
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,2 +1,2 @@ | ||
FROM busybox:1.31.1-musl | ||
FROM busybox:1.32.0-musl | ||
ENTRYPOINT ["/bin/echo", "hello world"] |
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,7 +1,7 @@ | ||
|
||
# code: language=Dockerfile | ||
|
||
# The code for the build image should be idendical with the code in | ||
# The code for the build image should be identical with the code in | ||
# Dockerfile.nginx to use the caching mechanism of Docker. | ||
|
||
# Ref: https://devguide.python.org/#branchstatus | ||
|
@@ -23,8 +23,7 @@ RUN \ | |
rm -rf /var/lib/apt/lists && \ | ||
true | ||
COPY requirements.txt ./ | ||
RUN pip3 install --no-cache-dir --upgrade pip | ||
RUN pip3 wheel --wheel-dir=/tmp/wheels -r ./requirements.txt --use-deprecated=legacy-resolver | ||
RUN pip3 wheel --wheel-dir=/tmp/wheels -r ./requirements.txt | ||
|
||
FROM python:3.6.12-slim-buster@sha256:e5259113df5a7c4dae16ad37c2ca53b1cf722e051cfd5f624e7b76aa72389e0c | ||
WORKDIR /app | ||
|
@@ -53,15 +52,14 @@ RUN \ | |
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists && \ | ||
true | ||
RUN pip3 install --no-cache-dir --upgrade pip | ||
COPY --from=build /tmp/wheels /tmp/wheels | ||
COPY requirements.txt ./ | ||
RUN pip3 install \ | ||
--no-cache-dir \ | ||
--no-index \ | ||
--find-links=/tmp/wheels \ | ||
-r ./requirements.txt \ | ||
--use-deprecated=legacy-resolver | ||
-r ./requirements.txt | ||
|
||
COPY \ | ||
docker/entrypoint-celery-beat.sh \ | ||
docker/entrypoint-celery-worker.sh \ | ||
|
@@ -74,7 +72,7 @@ COPY \ | |
docker/wait-for-it.sh \ | ||
docker/certs/* \ | ||
/ | ||
COPY wsgi.py manage.py tests/unit-tests.sh ./ | ||
COPY wsgi.py manage.py docker/unit-tests.sh ./ | ||
COPY dojo/ ./dojo/ | ||
|
||
# Add extra fixtures to docker image which are loaded by the initializer | ||
|
@@ -98,9 +96,12 @@ RUN \ | |
chown -R ${appuser} /app && \ | ||
chmod 0700 /app && \ | ||
chmod 0750 -R /app/* && \ | ||
chmod g=u /app && \ | ||
chmod -R g=u /app/* && \ | ||
mkdir /var/run/${appuser} && \ | ||
chown ${appuser} /var/run/${appuser} | ||
USER ${appuser} | ||
chown ${appuser} /var/run/${appuser} && \ | ||
chmod g=u /var/run/${appuser} | ||
USER ${uid} | ||
ENV \ | ||
DD_ADMIN_USER=admin \ | ||
[email protected] \ | ||
|
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
Oops, something went wrong.