From 70ea6d40b4c4a155481ca494d29f8419dd65a11c Mon Sep 17 00:00:00 2001 From: oldnick85 Date: Wed, 4 Jun 2025 21:00:41 +0300 Subject: [PATCH] [add] use i2pd 2.57.0 --- on_host/compile.sh | 2 +- src/Dockerfile | 2 +- support/make_docker_image.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/on_host/compile.sh b/on_host/compile.sh index 6227e61..1b6d9bb 100644 --- a/on_host/compile.sh +++ b/on_host/compile.sh @@ -18,7 +18,7 @@ sudo apt-get install -y \ libminiupnpc-dev mkdir /tmp/BUILD_I2PD/ cd /tmp/BUILD_I2PD/ -git clone --depth 1 --branch 2.56.0 https://github.com/PurpleI2P/i2pd.git +git clone --depth 1 --branch 2.57.0 https://github.com/PurpleI2P/i2pd.git cd /tmp/BUILD_I2PD/i2pd/build cmake -DCMAKE_BUILD_TYPE=Release -DWITH_AESNI=ON -DWITH_UPNP=ON . make diff --git a/src/Dockerfile b/src/Dockerfile index 96cb650..3fd06c8 100644 --- a/src/Dockerfile +++ b/src/Dockerfile @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1 ARG UBUNTU_VERSION=24.04 FROM ubuntu:${UBUNTU_VERSION} AS builder_i2pd -ARG I2PD_VERSION=2.56.0 +ARG I2PD_VERSION=2.57.0 ARG I2PD_COMPILER=gcc RUN DEBIAN_FRONTEND=noninteractive \ apt-get update &&\ diff --git a/support/make_docker_image.sh b/support/make_docker_image.sh index e280c83..b2bbfc9 100644 --- a/support/make_docker_image.sh +++ b/support/make_docker_image.sh @@ -2,7 +2,7 @@ TAG_VERSION=$(git describe --tags || echo "unknown") docker build --file="src/Dockerfile" \ --build-arg UBUNTU_VERSION=24.04 \ - --build-arg I2PD_VERSION=2.56.0 \ + --build-arg I2PD_VERSION=2.57.0 \ --build-arg I2PD_COMPILER=gcc \ --build-arg YGGDRASIL_VERSION=v0.5.12 \ --tag i2pd_yggdrasil:${TAG_VERSION} \