Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
docker-ci
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
UNL ITS
docker-ci
Merge requests
!16
Resolve "Add Automated Secrets Detection"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Add Automated Secrets Detection"
6-add-automated-secrets-detection
into
develop
Overview
1
Commits
29
Pipelines
19
Changes
4
Merged
Raul Barreras
requested to merge
6-add-automated-secrets-detection
into
develop
5 years ago
Overview
1
Commits
29
Pipelines
19
Changes
4
Expand
Closes
#6 (closed)
Edited
5 years ago
by
Raul Barreras
0
0
Merge request reports
Compare
develop
version 17
63159dda
5 years ago
version 16
381c5d6a
5 years ago
version 15
381c5d6a
5 years ago
version 14
0390b15f
5 years ago
version 13
3b765fdc
5 years ago
version 12
c89076e2
5 years ago
version 11
3094f8d1
5 years ago
version 10
05531508
5 years ago
version 9
937c0e09
5 years ago
version 8
40e0c87d
5 years ago
version 7
2391fa16
5 years ago
version 6
db51d7b5
5 years ago
version 5
8a16b14c
5 years ago
version 4
c5b42049
5 years ago
version 3
d5828fe2
5 years ago
version 2
235e7ada
5 years ago
version 1
9b4066a6
5 years ago
develop (base)
and
version 4
latest version
a67c637a
28 commits,
5 years ago
version 17
63159dda
26 commits,
5 years ago
version 16
381c5d6a
24 commits,
5 years ago
version 15
381c5d6a
25 commits,
5 years ago
version 14
0390b15f
24 commits,
5 years ago
version 13
3b765fdc
23 commits,
5 years ago
version 12
c89076e2
22 commits,
5 years ago
version 11
3094f8d1
21 commits,
5 years ago
version 10
05531508
19 commits,
5 years ago
version 9
937c0e09
18 commits,
5 years ago
version 8
40e0c87d
17 commits,
5 years ago
version 7
2391fa16
14 commits,
5 years ago
version 6
db51d7b5
8 commits,
5 years ago
version 5
8a16b14c
7 commits,
5 years ago
version 4
c5b42049
5 commits,
5 years ago
version 3
d5828fe2
4 commits,
5 years ago
version 2
235e7ada
3 commits,
5 years ago
version 1
9b4066a6
2 commits,
5 years ago
4 files
+
55
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
detect-secrets/Dockerfile
0 → 100644
+
26
−
0
Options
FROM
python:3.7-alpine
ARG
BUILD_DATE
ARG
VCS_REF
ARG
VERSION
LABEL
org.label-schema.build-date=$BUILD_DATE \
org.label-schema.name="Detects secrets" \
org.label-schema.description="Docker image to detect secrets in a code base" \
org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.vendor="University of Nebraska - Lincoln" \
org.label-schema.version="0.1.0" \
org.label-schema.schema-version="1.0" \
maintainer="J.R. Barreras <barreras@unl.edu>"
WORKDIR
/work
RUN
apk update
&&
apk upgrade
&&
\
apk add
--no-cache
git jq
&&
\
pip
install
detect-secrets
COPY
entrypoint.sh /usr/local/bin/
RUN
chmod
+x /usr/local/bin/entrypoint.sh
#ENTRYPOINT ["/usr/local/bin/detect-secrets"]
ENTRYPOINT
["/usr/local/bin/entrypoint.sh"]
CMD
["/usr/local/bin/detect-secrets", "scan"]
Loading