-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ split out digest file creation, rename some vars closes #9 Co-authored-by: Taylor Silva <[email protected]> Signed-off-by: Alex Suraci <[email protected]>
- Loading branch information
1 parent
98db96a
commit 2406a19
Showing
3 changed files
with
96 additions
and
29 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
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,8 +1,13 @@ | ||
FROM busybox | ||
RUN false | ||
|
||
FROM busybox AS additional-target | ||
FROM scratch AS additional-target | ||
LABEL target=additional-target | ||
USER banana | ||
ADD Dockerfile /Dockerfile.banana | ||
ENV PATH=/darkness | ||
ENV BA=nana | ||
|
||
FROM busybox | ||
FROM scratch | ||
LABEL target=final-target | ||
USER orange | ||
ADD Dockerfile /Dockerfile.orange | ||
ENV PATH=/lightness | ||
ENV OR=ange |