forked from shipwright-io/build
-
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.
Fix shipwright-io#519 capital letter in stage names
update stage code so that when comparing the BaseName of a stage against the recorded, lowercase version of a Stage name the BaseName is also lowercased.
- Loading branch information
Showing
2 changed files
with
22 additions
and
2 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
integration/dockerfiles/Dockerfile_test_from_multistage_capital
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,13 @@ | ||
FROM alpine as base_stage | ||
|
||
RUN echo base_stage | ||
|
||
|
||
FROM base_stage as BUG_stage | ||
|
||
RUN echo BUG_stage | ||
|
||
|
||
FROM BUG_stage as final_stage | ||
|
||
RUN echo final_stage |
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