You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#TODO: ensure Makefile compiles using CPU dependent intrinsics (avx/sse/march=native). see issue (https://github.com/ElementsProject/lightning/issues/8456). COPTFLAGS
159
-
RUN ./configure --enable-static --disable-compat --disable-valgrind
160
-
#TODO: Fix: .git needed by makefile for git --describe
161
-
RUN uv run make -j$(nproc) lightningd/lightningd
161
+
#TODO: maybe only compile lightningd? instead of all the plugins as well
162
+
RUN ./configure --prefix=/opt/lightningd --enable-static --disable-compat --disable-valgrind
163
+
COPY .git/ .git/
164
+
RUN git submodule update --init --recursive
165
+
RUN uv run make -j$(nproc) install
162
166
163
-
RUN ${STRIP} --strip-unneeded lightningd/lightningd
0 commit comments