Skip to content

Commit

Permalink
changed:
Browse files Browse the repository at this point in the history
- build with upnp enabled
- I2Pd v2.50.2 (see ChangeLog-i2pd)
  • Loading branch information
diva-exchange committed Jan 21, 2024
1 parent b414601 commit bfbefd4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# for this file format description,
# see https://github.com/olivierlacan/keep-a-changelog

## [2.50.2] - 2024-01-20
### Changed
- fix: WITH_UPNP (with libupnp)

## [2.50.2] - 2024-01-17
### Changed
- I2Pd v2.50.2 (see ChangeLog-i2pd)
Expand Down
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,12 @@ RUN mkdir -p /home/i2pd/data/addressbook \
git \
autoconf \
automake \
miniupnpc \
miniupnpc-dev \
&& cd /tmp \
&& git clone -b openssl https://github.com/PurpleI2P/i2pd.git \
&& git clone --depth 1 -b openssl https://github.com/PurpleI2P/i2pd.git \
&& cd /tmp/i2pd/build \
&& cmake -DWITH_AESNI=ON . \
&& cmake -DWITH_AESNI=ON -DWITH_UPNP=ON . \
&& make \
&& strip i2pd \
&& mv /tmp/i2pd/build/i2pd /home/i2pd/bin/i2pd \
Expand All @@ -58,6 +60,7 @@ RUN mkdir -p /home/i2pd/data/addressbook \
musl-utils \
libstdc++ \
sed \
miniupnpc \
&& cp /home/i2pd/conf/addresses-initial.org.csv /home/i2pd/data/addressbook/addresses.csv \
&& addgroup -g 1000 i2pd \
&& adduser -u 1000 -G i2pd -s /bin/sh -h "/home/i2pd" -D i2pd \
Expand Down

0 comments on commit bfbefd4

Please sign in to comment.