mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 01:43:36 +01:00
docker: git reset to avoid modded suffix
Changelog-Fixed: Core lightning's version will not be suffixed with -modded anymore.
This commit is contained in:
parent
bb72ad39b1
commit
ad37328600
@ -199,7 +199,12 @@ RUN ( ! [ "${target_host}" = "arm-linux-gnueabihf" ] ) || \
|
|||||||
# https://github.com/ElementsProject/lightning/pull/7376#issuecomment-2161102381
|
# https://github.com/ElementsProject/lightning/pull/7376#issuecomment-2161102381
|
||||||
RUN poetry lock --no-update && poetry install
|
RUN poetry lock --no-update && poetry install
|
||||||
|
|
||||||
RUN ./configure --prefix=/tmp/lightning_install --enable-static && make && poetry run make install
|
# Ensure that git differences are removed before making bineries, to avoid `-modded` suffix
|
||||||
|
# poetry.lock changed due to pyln-client, pyln-proto and pyln-testing version updates
|
||||||
|
# pyproject.toml was updated to exclude clnrest and wss-proxy plugins in base-builder stage
|
||||||
|
RUN git reset --hard HEAD
|
||||||
|
|
||||||
|
RUN ./configure --prefix=/tmp/lightning_install --enable-static && poetry run make install
|
||||||
|
|
||||||
# Export the requirements for the plugins so we can install them in builder-python stage
|
# Export the requirements for the plugins so we can install them in builder-python stage
|
||||||
WORKDIR /opt/lightningd/plugins/clnrest
|
WORKDIR /opt/lightningd/plugins/clnrest
|
||||||
|
Loading…
Reference in New Issue
Block a user