docker build from readme thows error #16090
Replies: 1 comment
|
This is a regression in the current The Docker build still passes There is already an open fix in #16085. It changes One separate detail: the Dockerfile expects docker build -t code \
-f docker/from-source-gh-action/Dockerfile \
docker/from-source-gh-actionUsing the repository root as the final build context would copy the wrong |
Uh oh!
There was an error while loading. Please reload this page.
I've cloned online-main and tried to build a docker image.
And I got error:
.....
650.3 checking whether g++ supports C++20... yes (-std=c++20)
651.5 checking whether the compiler is clang... no
651.6 checking for CollaboraOffice path... given
651.6 checking whether to run tests against a CollaboraOffice... no
651.6 configure: error: /build/builddir/poco-engine/config_host.mk not found; build the engine first so its standard-library ABI can be matched
651.6 configure: using POCO built in the engine: /build/builddir/poco-engine/workdir/LinkTarget/StaticLibrary
Dockerfile:41
39 | COPY / $BUILDDIR/
40 |
41 | >>> RUN bash build.sh
42 |
43 | # Build the final image
Dockerfile I used: online-main/docker/from-source-gh-action/Dockerfile
What am I doing wrong?
All reactions