[RESOLVED] Automated docker build fails

We found a workaround to address that issue: In fact, Docker Hub don’t like when you COPY or ADD files or folders in the root directory.

So, for any COPY stuff / you have, you will need to do something like this:

COPY stuff /stuff
RUN cp -r /stuff/* / && rm -r /stuff