@@ -38,6 +38,7 @@ COPY --from=builder /tmp/bitgo/node_modules /var/node_modules/
3838COPY --from=builder /tmp/bitgo/modules/express /var/bitgo-express/
3939
4040# COPY_START
41+ COPY --from=builder /tmp/bitgo/modules/abstract-lightning /var/modules/abstract-lightning/
4142COPY --from=builder /tmp/bitgo/modules/sdk-core /var/modules/sdk-core/
4243COPY --from=builder /tmp/bitgo/modules/bls-dkg /var/modules/bls-dkg/
4344COPY --from=builder /tmp/bitgo/modules/sdk-lib-mpc /var/modules/sdk-lib-mpc/
@@ -48,7 +49,6 @@ COPY --from=builder /tmp/bitgo/modules/utxo-lib /var/modules/utxo-lib/
4849COPY --from=builder /tmp/bitgo/modules/blake2b /var/modules/blake2b/
4950COPY --from=builder /tmp/bitgo/modules/blake2b-wasm /var/modules/blake2b-wasm/
5051COPY --from=builder /tmp/bitgo/modules/bitgo /var/modules/bitgo/
51- COPY --from=builder /tmp/bitgo/modules/abstract-lightning /var/modules/abstract-lightning/
5252COPY --from=builder /tmp/bitgo/modules/abstract-utxo /var/modules/abstract-utxo/
5353COPY --from=builder /tmp/bitgo/modules/blockapis /var/modules/blockapis/
5454COPY --from=builder /tmp/bitgo/modules/sdk-api /var/modules/sdk-api/
@@ -122,7 +122,8 @@ COPY --from=builder /tmp/bitgo/modules/sdk-coin-ltc /var/modules/sdk-coin-ltc/
122122COPY --from=builder /tmp/bitgo/modules/sdk-coin-xlm /var/modules/sdk-coin-xlm/
123123COPY --from=builder /tmp/bitgo/modules/sdk-coin-zec /var/modules/sdk-coin-zec/
124124
125- RUN cd /var/modules/sdk-core && yarn link && \
125+ RUN cd /var/modules/abstract-lightning && yarn link && \
126+ cd /var/modules/sdk-core && yarn link && \
126127cd /var/modules/bls-dkg && yarn link && \
127128cd /var/modules/sdk-lib-mpc && yarn link && \
128129cd /var/modules/sdk-opensslbytes && yarn link && \
@@ -132,7 +133,6 @@ cd /var/modules/utxo-lib && yarn link && \
132133cd /var/modules/blake2b && yarn link && \
133134cd /var/modules/blake2b-wasm && yarn link && \
134135cd /var/modules/bitgo && yarn link && \
135- cd /var/modules/abstract-lightning && yarn link && \
136136cd /var/modules/abstract-utxo && yarn link && \
137137cd /var/modules/blockapis && yarn link && \
138138cd /var/modules/sdk-api && yarn link && \
@@ -209,6 +209,7 @@ cd /var/modules/sdk-coin-zec && yarn link
209209
210210# LINK_START
211211RUN cd /var/bitgo-express && \
212+ yarn link @bitgo/abstract-lightning && \
212213 yarn link @bitgo/sdk-core && \
213214 yarn link @bitgo/bls-dkg && \
214215 yarn link @bitgo/sdk-lib-mpc && \
@@ -219,7 +220,6 @@ RUN cd /var/bitgo-express && \
219220 yarn link @bitgo/blake2b && \
220221 yarn link @bitgo/blake2b-wasm && \
221222 yarn link bitgo && \
222- yarn link @bitgo/abstract-lightning && \
223223 yarn link @bitgo/abstract-utxo && \
224224 yarn link @bitgo/blockapis && \
225225 yarn link @bitgo/sdk-api && \
@@ -295,9 +295,9 @@ RUN cd /var/bitgo-express && \
295295# LINK_END
296296
297297# LABEL_START
298- LABEL created="Wed, 19 Feb 2025 13:38:58 GMT"
299- LABEL version=10.7 .0
300- LABEL git_hash=db6c3b685bd685c8a649d4002a03461ec529dc1c
298+ LABEL created="Thu, 20 Feb 2025 13:57:47 GMT"
299+ LABEL version=11.0 .0
300+ LABEL git_hash=469eab4beb54ca705626534535fa32bad6756c11
301301# LABEL_END
302302
303303USER node
0 commit comments