Skip to content

Commit bbd039b

Browse files
committed
fix: Upgrade forest version
Signed-off-by: Alexander Dobrodey <[email protected]>
1 parent 2a7676d commit bbd039b

File tree

2 files changed

+35
-36
lines changed

2 files changed

+35
-36
lines changed

images/fil-snapshots-archive/Dockerfile

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# v0.30.2-fat
2+
ARG FOREST_VERSION=2025-10-22-fbb333c
3+
FROM ghcr.io/chainsafe/forest:${FOREST_VERSION}
4+
ENV DEBIAN_FRONTEND="noninteractive"
5+
6+
# Install binary dependencies
7+
RUN apt-get update \
8+
&& apt-get install --no-install-recommends -y \
9+
aria2 \
10+
bc \
11+
curl \
12+
jq \
13+
python3 \
14+
python3-pip \
15+
unzip \
16+
wget \
17+
&& rm -rf /var/lib/apt/lists/*
18+
19+
# Install Python dependencies
20+
COPY requirements.txt .
21+
RUN pip3 install --no-cache-dir --break-system-packages -r requirements.txt \
22+
&& rm -f requirements.txt
23+
24+
# Basic verification of dynamically linked dependencies
25+
RUN forest -V \
26+
&& forest-cli -V \
27+
&& forest-tool -V \
28+
&& jq -V \
29+
&& python3 -V
30+
31+
# RUN groupadd --gid 1001 forest \
32+
# && useradd --uid 1001 --gid 1001 --create-home --shell /bin/bash forest
33+
#
34+
# USER forest
35+
ENTRYPOINT ["/bin/bash"]

images/fil-snapshots-archive/Dockerfile-light

Lines changed: 0 additions & 35 deletions
This file was deleted.

0 commit comments

Comments
 (0)