forked from bitovi/github-actions-deploy-eks-helm
-
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.
- Loading branch information
1 parent
a16171f
commit cb0353f
Showing
1 changed file
with
4 additions
and
5 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,9 +1,8 @@ | ||
FROM dtzar/helm-kubectl:3.10.2 | ||
|
||
FROM alpine/k8s:1.26.1 | ||
COPY deploy.sh /usr/local/bin/deploy | ||
|
||
RUN chmod +x /usr/local/bin/deploy; \ | ||
chown 555 /usr/local/bin/deploy; \ | ||
apk add --no-cache aws-cli | ||
RUN chmod +x /usr/local/bin/deploy ;\ | ||
chown 555 /usr/local/bin/deploy | ||
|
||
CMD deploy |