Skip to content

Commit 07a68d2

Browse files
committed
apply
Signed-off-by: Daniil Antoshin <[email protected]>
1 parent f9c6a72 commit 07a68d2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

images/virt-handler/debug/dlv.Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ RUN go mod edit -go=$GOVERSION && \
3333

3434
RUN go mod vendor
3535

36-
RUN git apply patches/0001-upd-vendor-cgroups-devices-emulator-add-alias.patch
36+
RUN for p in patches/*.patch ; do \
37+
echo -n "Apply ${p} ... " \
38+
git apply --ignore-space-change --ignore-whitespace ${p} && echo OK || (echo FAIL ; exit 1) \
39+
done
3740

3841
ENV GO111MODULE=on
3942
ENV GOOS=linux

0 commit comments

Comments
 (0)