[add] use i2pd 2.55.0 and ygg 0.5.12

This commit is contained in:
oldnick85
2025-01-02 11:43:47 +03:00
parent 96b93dfe97
commit d83fc63ad7
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ sudo apt-get install -y \
libminiupnpc-dev libminiupnpc-dev
mkdir /tmp/BUILD_I2PD/ mkdir /tmp/BUILD_I2PD/
cd /tmp/BUILD_I2PD/ cd /tmp/BUILD_I2PD/
git clone --depth 1 --branch 2.54.0 https://github.com/PurpleI2P/i2pd.git git clone --depth 1 --branch 2.55.0 https://github.com/PurpleI2P/i2pd.git
cd /tmp/BUILD_I2PD/i2pd/build cd /tmp/BUILD_I2PD/i2pd/build
cmake -DCMAKE_BUILD_TYPE=Release -DWITH_AESNI=ON -DWITH_UPNP=ON . cmake -DCMAKE_BUILD_TYPE=Release -DWITH_AESNI=ON -DWITH_UPNP=ON .
make make
+2 -2
View File
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1 # syntax=docker/dockerfile:1
ARG UBUNTU_VERSION=24.04 ARG UBUNTU_VERSION=24.04
FROM ubuntu:${UBUNTU_VERSION} AS builder_i2pd FROM ubuntu:${UBUNTU_VERSION} AS builder_i2pd
ARG I2PD_VERSION=2.54.0 ARG I2PD_VERSION=2.55.0
ARG I2PD_COMPILER=gcc ARG I2PD_COMPILER=gcc
RUN DEBIAN_FRONTEND=noninteractive \ RUN DEBIAN_FRONTEND=noninteractive \
apt-get update &&\ apt-get update &&\
@@ -33,7 +33,7 @@ RUN cmake -DCMAKE_BUILD_TYPE=Release -DWITH_AESNI=ON -DWITH_UPNP=ON .
RUN make RUN make
FROM ubuntu:${UBUNTU_VERSION} as builder_yggdrasil FROM ubuntu:${UBUNTU_VERSION} as builder_yggdrasil
ARG YGGDRASIL_VERSION=v0.5.11 ARG YGGDRASIL_VERSION=v0.5.12
RUN DEBIAN_FRONTEND=noninteractive \ RUN DEBIAN_FRONTEND=noninteractive \
apt-get update && \ apt-get update && \
apt-get -y upgrade apt-get -y upgrade
+2 -2
View File
@@ -2,9 +2,9 @@
TAG_VERSION=$(git describe --tags || echo "unknown") TAG_VERSION=$(git describe --tags || echo "unknown")
docker build --file="src/Dockerfile" \ docker build --file="src/Dockerfile" \
--build-arg UBUNTU_VERSION=24.04 \ --build-arg UBUNTU_VERSION=24.04 \
--build-arg I2PD_VERSION=2.54.0 \ --build-arg I2PD_VERSION=2.55.0 \
--build-arg I2PD_COMPILER=gcc \ --build-arg I2PD_COMPILER=gcc \
--build-arg YGGDRASIL_VERSION=v0.5.11 \ --build-arg YGGDRASIL_VERSION=v0.5.12 \
--tag i2pd_yggdrasil:${TAG_VERSION} \ --tag i2pd_yggdrasil:${TAG_VERSION} \
--tag i2pd_yggdrasil:latest \ --tag i2pd_yggdrasil:latest \
. .