UNCLASSIFIED - NO CUI
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
base
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Iron Bank Containers
Big Bang
base
Merge requests
!66
BB Base refactor
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
BB Base refactor
22-big-bang-base-image-refactor
into
development
Overview
0
Commits
2
Pipelines
2
Changes
4
Merged
Micah Nagel
requested to merge
22-big-bang-base-image-refactor
into
development
2 years ago
Overview
0
Commits
2
Pipelines
2
Changes
4
Expand
For
#22 (closed)
Edited
2 years ago
by
Micah Nagel
0
0
Merge request reports
Compare
development
version 1
59e58506
2 years ago
development (base)
and
latest version
latest version
25c6cc1c
2 commits,
2 years ago
version 1
59e58506
1 commit,
2 years ago
4 files
+
11
−
152
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
Dockerfile
+
0
−
63
Options
@@ -4,7 +4,6 @@ ARG BASE_TAG=8.6
FROM
${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG}
RUN
dnf upgrade
-y
&&
\
dnf
install
-y
curl jq gnutls pinentry
&&
\
dnf clean all
&&
\
@@ -21,68 +20,6 @@ COPY yq /usr/local/bin/
RUN
chmod
+x /usr/local/bin/yq
&&
\
chown
root:root /usr/local/bin/yq
# Install mkcert
COPY
mkcert /usr/local/bin/
RUN
chmod
+x /usr/local/bin/mkcert
&&
\
chown
root:root /usr/local/bin/mkcert
# Install SOPS
COPY
sops /usr/local/bin/
RUN
chmod
+x /usr/local/bin/sops
&&
\
chown
root:root /usr/local/bin/sops
# Install SopsSecretGenerator
COPY
SopsSecretGenerator /usr/local/bin/
RUN
chmod
+x /usr/local/bin/SopsSecretGenerator
&&
\
chown
root:root /usr/local/bin/SopsSecretGenerator
# Install ArgoCD CLI
COPY
argocd /usr/local/bin/
RUN
chmod
+x /usr/local/bin/argocd
&&
\
chown
root:root /usr/local/bin/argocd
# Install Stern
COPY
stern.tar.gz /tmp/buildfiles/
RUN
tar
xzf /tmp/buildfiles/stern.tar.gz
-C
/tmp/buildfiles/
&&
\
mv
/tmp/buildfiles/stern /usr/local/bin/
&&
\
chmod
+x /usr/local/bin/stern
&&
\
chown
root:root /usr/local/bin/stern
# Install fluxcd
COPY
flux.tar.gz /tmp/buildfiles/
RUN
tar
xzf /tmp/buildfiles/flux.tar.gz
-C
/tmp/buildfiles/
&&
\
mv
/tmp/buildfiles/flux /usr/local/bin/
&&
\
chmod
+x /usr/local/bin/flux
&&
\
chown
root:root /usr/local/bin/flux
# Install Istio
COPY
istioctl.tar.gz /tmp/buildfiles/
RUN
tar
xzf /tmp/buildfiles/istioctl.tar.gz
-C
/tmp/buildfiles/
&&
\
mv
/tmp/buildfiles/istioctl /usr/local/bin/
&&
\
chmod
+x /usr/local/bin/istioctl
&&
\
chown
root:root /usr/local/bin/istioctl
# Install k9s
COPY
k9s.tar.gz /tmp/buildfiles/
RUN
tar
xzvf /tmp/buildfiles/k9s.tar.gz
-C
/tmp/buildfiles/
&&
\
mv
/tmp/buildfiles/k9s /usr/local/bin/k9s
&&
\
chmod
+x /usr/local/bin/k9s
&&
\
chown
root:root /usr/local/bin/k9s
# Install helm
COPY
helm.tar.gz /tmp/buildfiles/
RUN
tar
xzvf /tmp/buildfiles/helm.tar.gz
-C
/tmp/buildfiles/
&&
\
mv
/tmp/buildfiles/linux-amd64/helm /usr/local/bin/helm
&&
\
chmod
+x /usr/local/bin/helm
&&
\
chown
root:root /usr/local/bin/helm
# Install kustomize
COPY
kustomize.tar.gz /tmp/buildfiles/
RUN
tar
xzvf /tmp/buildfiles/kustomize.tar.gz
-C
/tmp/buildfiles/
&&
\
mv
/tmp/buildfiles/kustomize /usr/local/bin/kustomize
&&
\
chmod
+x /usr/local/bin/kustomize
&&
\
chown
root:root /usr/local/bin/kustomize
# Clean Up
RUN
rm
-rf
/tmp/buildfiles
Loading