File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -199,7 +199,12 @@ RUN ( ! [ "${target_host}" = "arm-linux-gnueabihf" ] ) || \
199199# https://github.com/ElementsProject/lightning/pull/7376#issuecomment-2161102381
200200RUN poetry lock --no-update && poetry install
201201
202- RUN ./configure --prefix=/tmp/lightning_install --enable-static && make && poetry run make install
202+ # Ensure that git differences are removed before making bineries, to avoid `-modded` suffix
203+ # poetry.lock changed due to pyln-client, pyln-proto and pyln-testing version updates
204+ # pyproject.toml was updated to exclude clnrest and wss-proxy plugins in base-builder stage
205+ RUN git reset --hard HEAD
206+
207+ RUN ./configure --prefix=/tmp/lightning_install --enable-static && poetry run make install
203208
204209# Export the requirements for the plugins so we can install them in builder-python stage
205210WORKDIR /opt/lightningd/plugins/clnrest
You can’t perform that action at this time.
0 commit comments