We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9c6a72 commit 07a68d2Copy full SHA for 07a68d2
images/virt-handler/debug/dlv.Dockerfile
@@ -33,7 +33,10 @@ RUN go mod edit -go=$GOVERSION && \
33
34
RUN go mod vendor
35
36
-RUN git apply patches/0001-upd-vendor-cgroups-devices-emulator-add-alias.patch
+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
40
41
ENV GO111MODULE=on
42
ENV GOOS=linux
0 commit comments