File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -83,16 +83,23 @@ RUN echo "Building tags/${NODE_VERSION}..." \
83
83
84
84
FROM debian:stable-slim as cardano-node
85
85
ENV LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"
86
+ ENV PKG_CONFIG_PATH="/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH"
86
87
COPY --from=builder /usr/local/lib/ /usr/local/lib/
87
88
COPY --from=builder /usr/local/include/ /usr/local/include/
88
89
COPY --from=builder /root/.local/bin/cardano-* /usr/local/bin/
89
90
COPY bin/ /usr/local/bin/
90
91
COPY config/ /opt/cardano/config/
91
92
RUN apt-get update -y && \
92
93
apt-get install -y \
94
+ libffi7 \
93
95
libgmp10 \
94
96
libncursesw5 \
95
97
libnuma1 \
98
+ libsystemd0 \
99
+ libssl1.1 \
100
+ libtinfo6 \
101
+ llvm-11-runtime \
102
+ pkg-config \
96
103
zlib1g && \
97
104
chmod +x /usr/local/bin/* && \
98
105
rm -rf /var/lib/apt/lists/*
You can’t perform that action at this time.
0 commit comments