Skip to content

Commit 21db738

Browse files
Merge pull request #34 from mikepurvis/patch-1
Copy binaries to final container in single step.
2 parents 33fb534 + 268099c commit 21db738

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Dockerfile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ RUN apt-get update && apt-get install --yes \
3232

3333
RUN pip3 install awscli
3434

35-
COPY --from=builder /usr/local/bin/helm /usr/local/bin
36-
COPY --from=builder /usr/local/bin/kubeval /usr/local/bin
37-
COPY --from=builder /usr/local/bin/kubectl /usr/local/bin
38-
COPY --from=builder /usr/local/bin/kubeapply /usr/local/bin
35+
COPY --from=builder \
36+
/usr/local/bin/helm \
37+
/usr/local/bin/kubeval \
38+
/usr/local/bin/kubectl \
39+
/usr/local/bin/kubeapply \
40+
/usr/local/bin

0 commit comments

Comments
 (0)