File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -56,16 +56,27 @@ LABEL maintainer="dev@mara.tech"
5656LABEL version="0.2"
5757LABEL description="Coordinate Core - Multi-Platform Runtime Image"
5858
59- # Install ONLY runtime dependencies
59+ # Install ALL required runtime dependencies
6060RUN apt-get update && apt-get install -y --no-install-recommends \
61+ # libevent - ALL components
6162 libevent-2.1-7 \
63+ libevent-core-2.1-7 \
64+ libevent-extra-2.1-7 \
65+ libevent-openssl-2.1-7 \
6266 libevent-pthreads-2.1-7 \
67+ # Boost libraries
6368 libboost-filesystem1.74.0 \
6469 libboost-thread1.74.0 \
70+ libboost-chrono1.74.0 \
71+ # Database
6572 libsqlite3-0 \
73+ # Networking
6674 libminiupnpc17 \
6775 libnatpmp1 \
6876 libzmq5 \
77+ # SSL/TLS (often needed)
78+ libssl3 \
79+ # Other common deps
6980 ca-certificates \
7081 && rm -rf /var/lib/apt/lists/* \
7182 && apt-get clean
You can’t perform that action at this time.
0 commit comments