File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -68,18 +68,42 @@ RUN python3 -m compileall -q "@AUX_PREFIX@/lib/python@PYVERSION@/site-packages"
68
68
FROM @DOCKER_BASE@
69
69
70
70
# Copy our installed software binaries and libraries.
71
+ # NOTE: The "RUN true" commands work around a docker bug:
72
+ # https://github.com/moby/moby/issues/37965
73
+ #
71
74
72
75
COPY --from=builder /lib /lib/
76
+ RUN true
77
+
73
78
COPY --from=builder /bin /bin/
79
+ RUN true
80
+
74
81
COPY --from=builder /sbin /sbin/
82
+ RUN true
83
+
75
84
COPY --from=builder /etc /etc/
85
+ RUN true
86
+
76
87
COPY --from=builder /usr/bin /usr/bin/
88
+ RUN true
89
+
77
90
COPY --from=builder /usr/sbin /usr/sbin/
91
+ RUN true
92
+
78
93
COPY --from=builder /usr/lib /usr/lib/
94
+ RUN true
95
+
79
96
COPY --from=builder /usr/include /usr/include/
97
+ RUN true
98
+
80
99
COPY --from=builder /usr/libexec /usr/libexec/
100
+ RUN true
101
+
81
102
COPY --from=builder /usr/share /usr/share/
103
+ RUN true
104
+
82
105
COPY --from=builder /usr/local /usr/local/
106
+ RUN true
83
107
84
108
# Home directory
85
109
You can’t perform that action at this time.
0 commit comments