Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pipeline-build-image
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSDU
OSDU Data Platform
Deployment and Operations
base-containers-azure
pipeline-build-image
Merge requests
!1
Resolve vulnerability: CVE-2016-4074 in jq
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Resolve vulnerability: CVE-2016-4074 in jq
remediate/cve-2016-4074-in-jq-D20210318T184410
into
master
Overview
1
Commits
3
Pipelines
0
Changes
1
Closed
Daniel Scholl (MS]
requested to merge
remediate/cve-2016-4074-in-jq-D20210318T184410
into
master
3 years ago
Overview
1
Commits
3
Pipelines
0
Changes
1
Expand
Description:
jq:1.6-r0 is affected by CVE-2016-4074
Severity: high
Confidence: unknown
Solution:
Upgrade jq from 1.6-r0 to 1.6_rc1-r0
Identifiers:
CVE-2016-4074
Links:
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-4074
0
0
Merge request reports
Compare
master
version 3
6928e1e8
3 years ago
version 2
4fc97a86
3 years ago
version 1
4fc97a86
3 years ago
master (base)
and
latest version
latest version
57cc3ee7
3 commits,
3 years ago
version 3
6928e1e8
2 commits,
3 years ago
version 2
4fc97a86
1 commit,
3 years ago
version 1
4fc97a86
1 commit,
3 years ago
1 file
+
1
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Dockerfile
+
1
−
8
Options
@@ -33,14 +33,7 @@ ENV KUBE_LATEST_VERSION=${KUBE_VERSION} \
HELM_VERSION=${HELM_VERSION}
# # Note: Latest version of kubectl may be found at:
# # https://github.com/kubernetes/kubernetes/releases
# ENV KUBE_LATEST_VERSION="v1.18.15"
# # Note: Latest version of helm may be found at
# # https://github.com/kubernetes/helm/releases
# ENV HELM_VERSION="v3.5.3"
RUN
apk add
--no-cache
ca-certificates bash git openssh curl docker-cli
\
RUN
apk add
--no-cache
ca-certificates bash git openssh curl docker-cli jq
\
&&
wget
-q
https://storage.googleapis.com/kubernetes-release/release/v
${
KUBE_LATEST_VERSION
}
/bin/linux/amd64/kubectl
-O
/usr/local/bin/kubectl
\
&&
chmod
+x /usr/local/bin/kubectl
\
&&
wget
-q
https://get.helm.sh/helm-v
${
HELM_VERSION
}
-linux-amd64
.tar.gz
-O
- |
tar
-xzO
linux-amd64/helm
>
/usr/local/bin/helm
\
Loading