Skip to content

Commit f4e8589

Browse files
Cr 15392 debian (#63)
1 parent e6e265b commit f4e8589

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM alpine:3.6 AS builder
33
RUN apk update && apk add curl
44

55
RUN export ARCH=$([[ "$(uname -m)" == "aarch64" ]] && echo "arm64" || echo "amd64") && \
6-
mkdir -p /tmp/kubectl-versions && cd /tmp/kubectl-versions \
6+
mkdir -p /tmp/kubectl-versions && cd /tmp/kubectl-versions && \
77
curl -o kubectl1.23 -L https://storage.googleapis.com/kubernetes-release/release/v1.23.0/bin/linux/${ARCH}/kubectl && \
88
curl -o kubectl1.22 -L https://storage.googleapis.com/kubernetes-release/release/v1.22.0/bin/linux/${ARCH}/kubectl && \
99
curl -o kubectl1.21 -L https://storage.googleapis.com/kubernetes-release/release/v1.21.0/bin/linux/${ARCH}/kubectl && \
@@ -31,7 +31,7 @@ RUN adduser --gecos "" --disabled-password --home /home/cfu --shell /bin/bash cf
3131

3232
#copy all versions of kubectl to switch between them later.
3333
COPY --chown=cfu --chmod=775 --from=builder /tmp/kubectl-versions/* /usr/local/bin/
34-
RUN cp /usr/local/bin/kubectl1.10 /usr/local/bin/kubectl
34+
COPY --chown=cfu --chmod=775 --from=builder /tmp/kubectl-versions/kubectl1.10 /usr/local/bin/kubectl
3535

3636
WORKDIR /
3737
ADD --chown=cfu --chmod=775 cf-deploy-kubernetes.sh /cf-deploy-kubernetes

service.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version: 16.2.1
1+
version: 16.2.2

0 commit comments

Comments
 (0)