Skip to content

Commit 0d8c7c5

Browse files
committed
updating changes on docker file due to libevent issue
1 parent a0509a7 commit 0d8c7c5

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

Dockerfile

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,16 +56,27 @@ LABEL maintainer="dev@mara.tech"
5656
LABEL version="0.2"
5757
LABEL description="Coordinate Core - Multi-Platform Runtime Image"
5858

59-
# Install ONLY runtime dependencies
59+
# Install ALL required runtime dependencies
6060
RUN 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

0 commit comments

Comments
 (0)