-
Notifications
You must be signed in to change notification settings - Fork 10
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
ming.hsu
committed
Jun 7, 2021
1 parent
7703437
commit 8359c10
Showing
3 changed files
with
46 additions
and
20 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,16 +1,15 @@ | ||
FROM line/kubectl-kustomize:1.20.2-3.9.1 | ||
|
||
RUN mkdir -p /app | ||
WORKDIR /app | ||
COPY entrypoint.sh . | ||
RUN chmod +x entrypoint.sh | ||
COPY entrypoint.sh /bin/ | ||
RUN chmod +x /bin/entrypoint.sh | ||
|
||
ENV SSH_KEY= | ||
ENV IMAGE_REPO= | ||
ENV IMAGES= | ||
ENV IMAGE_TAG= | ||
ENV MANIFEST_HOST= | ||
ENV MANIFEST_USER= | ||
ENV MANIFEST_REPO= | ||
ENV SVC_PATH= | ||
ENV MANIFEST_BRANCH= | ||
ENV KUSTOMIZATION= | ||
|
||
ENTRYPOINT ["/app/entrypoint.sh"] | ||
ENTRYPOINT ["/bin/entrypoint.sh"] |
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 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