Skip to content

Commit

Permalink
fix: Adding kubectl to base image
Browse files Browse the repository at this point in the history
  • Loading branch information
whilke committed May 28, 2019
1 parent 59cc2eb commit e16ab1c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion system/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
FROM mhart/alpine-node:11.2.0
ENV NODE_ENV production

# Install kubectl
# Note: Latest version may be found on:
# https://aur.archlinux.org/packages/kubectl-bin/
ADD https://storage.googleapis.com/kubernetes-release/release/v1.14.2/bin/linux/amd64/kubectl /usr/local/bin/kubectl

RUN set -x \
&& apk add --no-cache bash
&& apk add --no-cache bash \
&& apk add --no-cache curl ca-certificates \
&& chmod +x /usr/local/bin/kubectl

WORKDIR /app/bake
COPY package.json .
Expand Down

0 comments on commit e16ab1c

Please sign in to comment.