Skip to content

Commit abcab14

Browse files
authored
Merge pull request moby#3436 from thaJeztah/fix_tests
frontend: fix testMultiStageImplicitFrom to account for busybox changes
2 parents e0220af + 34f9898 commit abcab14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/dockerfile/dockerfile_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3598,7 +3598,7 @@ COPY --from=busybox /etc/passwd test
35983598

35993599
dockerfile = []byte(`
36003600
FROM busybox AS golang
3601-
RUN mkdir /usr/bin && echo -n foo > /usr/bin/go
3601+
RUN mkdir -p /usr/bin && echo -n foo > /usr/bin/go
36023602
36033603
FROM scratch
36043604
COPY --from=golang /usr/bin/go go

0 commit comments

Comments
 (0)