File tree Expand file tree Collapse file tree 2 files changed +35
-36
lines changed
images/fil-snapshots-archive Expand file tree Collapse file tree 2 files changed +35
-36
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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" ]
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments