File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1212- A full and up to date implementation of EOF for Prague [ #7169 ] ( https://github.com/hyperledger/besu/pull/7169 )
1313- Add Subnet-Based Peer Permissions. [ #7168 ] ( https://github.com/hyperledger/besu/pull/7168 )
1414- Reduce lock contention on transaction pool when building a block [ #7180 ] ( https://github.com/hyperledger/besu/pull/7180 )
15+ - Update Docker base image to Ubuntu 24.04 [ #7251 ] ( https://github.com/hyperledger/besu/pull/7251 )
1516
1617### Bug fixes
1718- Validation errors ignored in accounts-allowlist and empty list [ #7138 ] ( https://github.com/hyperledger/besu/issues/7138 )
Original file line number Diff line number Diff line change 1-
2- FROM ubuntu:23.10
1+ FROM ubuntu:24.04
32ARG VERSION="dev"
43ENV NO_PROXY_CACHE="-o Acquire::BrokenProxy=true -o Acquire::http::No-Cache=true -o Acquire::http::Pipeline-Depth=0"
54
@@ -12,7 +11,7 @@ RUN apt-get update $NO_PROXY_CACHE && \
1211 apt-get clean && \
1312 rm -rf /var/cache/apt/archives/* /var/cache/apt/archives/partial/* && \
1413 rm -rf /var/lib/apt/lists/* && \
15- # Ubuntu 23.10 comes with an "ubuntu" user with uid 1000. We need 1000 for besu.
14+ # Starting from version 23.10, Ubuntu comes with an "ubuntu" user with uid 1000. We need 1000 for besu.
1615 userdel ubuntu 2>/dev/null || true && rm -rf /home/ubuntu && \
1716 # Ensure we use a stable UID for besu, as file permissions are tied to UIDs.
1817 adduser --uid 1000 --disabled-password --gecos "" --home /opt/besu besu && \
You can’t perform that action at this time.
0 commit comments