File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed
Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -49,9 +49,24 @@ RUN mkdir -p ${KEYPER_CONFIG_DIR} ${SHUTTER_CHAIN_DIR} ${ASSETS_DIR} /opt/superv
4949COPY scripts /usr/local/bin/
5050COPY --from=assets ${ASSETS_DIR}/ ${ASSETS_DIR}/
5151
52+ RUN apt-get update && apt-get install -y \
53+ ca-certificates \
54+ curl
55+
56+ ARG NODE_VERSION=22.14.0
57+ ARG NODE_PACKAGE=node-v$NODE_VERSION-linux-x64
58+ ARG NODE_HOME=/opt/$NODE_PACKAGE
59+
60+ ENV NODE_PATH $NODE_HOME/lib/node_modules
61+ ENV PATH $NODE_HOME/bin:$PATH
62+
63+ RUN curl https://nodejs.org/dist/v$NODE_VERSION/$NODE_PACKAGE.tar.gz | tar -xzC /opt/
64+
65+ RUN npm install -g wscat
66+
5267# Placed here to rebuild less layers
5368ENV CHAIN_PORT=${CHAIN_PORT} \
5469 SHUTTER_P2P_LISTENADDRESSES="/ip4/0.0.0.0/tcp/${KEYPER_PORT},/ip4/0.0.0.0/udp/${KEYPER_PORT}/quic-v1" \
5570 NETWORK=${NETWORK}
5671
57- ENTRYPOINT ["supervisord" , "-c" , "/etc/supervisord.conf" ]
72+ ENTRYPOINT ["supervisord" , "-c" , "/etc/supervisord.conf" ]
You can’t perform that action at this time.
0 commit comments