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 c9d1543 commit dc07f2cCopy full SHA for dc07f2c
Dockerfile
@@ -119,6 +119,9 @@ ENV APP_BUILDDIR=/var/build
119
120
COPY --from=builder ${QT_PREFIX} ${QT_PREFIX}
121
COPY --from=builder /opt/extra-dependencies/ /
122
+# the next copy statement failed often. My only guess is, that the extra dependencies are not existent and somehow that
123
+# triggers a failure here.... A workaround for similar issues is to put an empty run statement in between: https://github.com/moby/moby/issues/37965
124
+RUN true
125
COPY entrypoint.sh ${ENTRYPOINT_DIR}
126
127
RUN chmod +x ${ENTRYPOINT_DIR}/entrypoint.sh
0 commit comments