-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update helm and k8s version for Python CI pipeline.
Use alpine base image for binary builder. Signed-off-by: Md Soharab Ansari <soharab.ansari@infracloud.io>
- Loading branch information
1 parent
dd00fea
commit 714c63f
Showing
2 changed files
with
9 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
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,4 +1,8 @@ | ||
ARG BUILDER_IMAGE=fission/builder:latest | ||
FROM ${BUILDER_IMAGE} | ||
|
||
ADD build.sh /usr/local/bin/build | ||
FROM alpine:3.20 | ||
|
||
COPY --from=0 /builder /builder | ||
|
||
ADD build.sh /usr/local/bin/build |