Skip to content

Commit

Permalink
Merge pull request #42 from alpine-docker/feature/40
Browse files Browse the repository at this point in the history
feature/40
  • Loading branch information
ozbillwang authored Jan 9, 2023
2 parents 68053fd + 1698156 commit 11c2240
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ RUN apk add --update --no-cache curl ca-certificates bash git && \
curl -sL ${BASE_URL}/${TAR_FILE} | tar -xvz && \
mv linux-amd64/helm /usr/bin/helm && \
chmod +x /usr/bin/helm && \
rm -rf linux-amd64
rm -rf linux-amd64 /root/.local /root/.cache

# add helm-diff
RUN helm plugin install https://github.com/databus23/helm-diff && rm -rf /tmp/helm-*
RUN helm plugin install https://github.com/databus23/helm-diff && rm -rf /tmp/helm-* /root/.local /root/.cache

# add helm-unittest
RUN helm plugin install https://github.com/quintush/helm-unittest && rm -rf /tmp/helm-*
RUN helm plugin install https://github.com/quintush/helm-unittest && rm -rf /tmp/helm-* /root/.local /root/.cache

# add helm-push
RUN helm plugin install https://github.com/chartmuseum/helm-push && rm -rf /tmp/helm-*
RUN helm plugin install https://github.com/chartmuseum/helm-push && rm -rf /tmp/helm-* /root/.local /root/.cache

# Install kubectl (same version of aws esk)
RUN curl -sLO https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VERSION}/bin/linux/amd64/kubectl && \
Expand All @@ -47,7 +47,8 @@ RUN apk add --update --no-cache python3 && \
python3 -m ensurepip && \
pip3 install --upgrade pip && \
pip3 install awscli && \
pip3 cache purge
pip3 cache purge && \
rm -rf /root/.cache

# Install jq
RUN apk add --update --no-cache jq yq
Expand Down

0 comments on commit 11c2240

Please sign in to comment.