Christoph Junghans
Christoph Junghans
@aprokop any update on this, anything I can help with.
@dalg24 any ideas?
@aprokop I gave this a fresh start, similar to what we did in `Silo`.
On apple-silicon mac with docker you could use the following dockerfile: ```Dockerfile FROM registry.fedoraproject.org/fedora:latest RUN dnf install -y fedpkg wget RUN wget https://github.com/junghans/ArborX/archive/refs/heads/rpmbuild.zip RUN unzip rpmbuild.zip RUN mv ArborX-rpmbuild ArborX...
You could add a line like ``` ENV https_proxy myproxy:8080 ```
Ok, I not sure how that happened, but I was able to reproduce it on one of my machines, try with these 3 lines at the end: ``` .... RUN...
How about ```dockerfile ... RUN dnf -y builddep ArborX.spec RUN rpmbuild --define "_sourcedir $(pwd)" -ba ArborX.spec ```
Something like: ``` export RPM_ARCH=$(uname -m) export RPM_PACKAGE_RELEASE=1 export RPM_PACKAGE_VERSION=9999 export RPM_PACKAGE_NAME=ArborX ```