-
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
b3ee728
commit e34cb54
Showing
2 changed files
with
5 additions
and
6 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,11 +1,10 @@ | ||
FROM quay.io/skopeo/stable:latest AS builder | ||
|
||
WORKDIR /images | ||
|
||
ADD --chmod=700 vendor.sh ./vendor.sh | ||
|
||
ADD --chmod=700 vendor.sh /images/vendor.sh | ||
RUN ./vendor.sh | ||
|
||
# TODO: Copy to scratch image like in https://kairos.io/docs/examples/airgap/. | ||
FROM scratch | ||
|
||
RUN ls -al | ||
COPY ./run.sh / | ||
COPY --from=builder /images /assets |
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