Skip to content

Commit

Permalink
New code, who dis?
Browse files Browse the repository at this point in the history
Signed-off-by: markyjackson-taulia <[email protected]>
  • Loading branch information
markjacksonfishing committed Jul 10, 2024
1 parent d3705ab commit 094691f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
12 changes: 4 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,17 @@ RUN apt-get update && \
unzip \
jq \
openssh-client && \
rm -rf /var/lib/apt/lists/*

# Install Docker CLI
RUN curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - && \
# Install Docker CLI
curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - && \
add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/debian \
$(lsb_release -cs) \
stable" && \
apt-get update && \
apt-get install -y --no-install-recommends \
docker-ce-cli && \
rm -rf /var/lib/apt/lists/*

# Install kubectl
RUN curl -fsSL https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - && \
# Install kubectl
curl -fsSL https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - && \
echo "deb https://apt.kubernetes.io/ kubernetes-xenial main" | tee -a /etc/apt/sources.list.d/kubernetes.list && \
apt-get update && \
apt-get install -y --no-install-recommends \
Expand Down
1 change: 0 additions & 1 deletion jenkins-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ spec:
volumeMounts:
- name: jenkins-home
mountPath: /var/jenkins_home
readOnly: false
volumes:
- name: jenkins-home
persistentVolumeClaim:
Expand Down

0 comments on commit 094691f

Please sign in to comment.