-
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
1 parent
2c0505d
commit d047abd
Showing
7 changed files
with
121 additions
and
129 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 |
---|---|---|
|
@@ -19,4 +19,5 @@ dockerfilegraph | |
|
||
# dockerfilegraph | ||
Dockerfile.* | ||
!Dockerfile.alpine | ||
!/Dockerfile.alpine | ||
!example/Dockerfile.large |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM scratch AS base | ||
COPY --from=external_0 file_0_0 / | ||
COPY --from=external_1 file_1_0 / | ||
COPY --from=external_2 file_2_0 / | ||
COPY --from=external_3 file_3_0 / | ||
COPY --from=external_4 file_4_0 / | ||
COPY --from=external_5 file_5_0 / | ||
COPY --from=external_6 file_6_0 / | ||
|
||
FROM base AS build | ||
RUN --mount=type=cache,from=buildcache,source=/build,target=/build make build | ||
|
||
FROM build AS final | ||
COPY --from=supplemental file_supplemental_0 / | ||
COPY --from=supplemental file_supplemental_1 / | ||
COPY --from=supplemental file_supplemental_2 / |
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
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