-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use pre-built image for workflow speedup
- Loading branch information
1 parent
05dded1
commit aeef3c5
Showing
3 changed files
with
8 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1 @@ | ||
FROM flownative/base:1 | ||
|
||
ENV HELM_VERSION v3.0.2 | ||
ENV HELM_HOME=/root/.helm | ||
|
||
# We need Git for "helm plugin install" | ||
RUN apt-get update \ | ||
&& apt-get install git \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& rm -rf /var/log/apt \ | ||
&& rm -rf /var/log/dpkg.log | ||
|
||
RUN curl -sSL https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz | tar xz \ | ||
&& mv linux-amd64/helm /usr/local/bin/helm \ | ||
&& rm -rf linux-amd64 | ||
|
||
COPY entrypoint.sh /entrypoint.sh | ||
RUN chmod 755 /entrypoint.sh | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] | ||
FROM flownative/action-helm-release:1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.