Skip to content

Commit cd68e5d

Browse files
OttoAllmendingerllm-git
andcommitted
fix(abstract-utxo): reorder modules in Dockerfile
Reordered module dependencies in Dockerfile to match dependency order in package.json. Issue: BTC-0 Co-authored-by: llm-git <llm-git@ttll.de>
1 parent 01a2cd1 commit cd68e5d

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ COPY --from=builder /tmp/bitgo/modules/sdk-opensslbytes /var/modules/sdk-openssl
4545
COPY --from=builder /tmp/bitgo/modules/secp256k1 /var/modules/secp256k1/
4646
COPY --from=builder /tmp/bitgo/modules/sjcl /var/modules/sjcl/
4747
COPY --from=builder /tmp/bitgo/modules/statics /var/modules/statics/
48-
COPY --from=builder /tmp/bitgo/modules/utxo-core /var/modules/utxo-core/
49-
COPY --from=builder /tmp/bitgo/modules/unspents /var/modules/unspents/
5048
COPY --from=builder /tmp/bitgo/modules/utxo-lib /var/modules/utxo-lib/
5149
COPY --from=builder /tmp/bitgo/modules/blake2b /var/modules/blake2b/
5250
COPY --from=builder /tmp/bitgo/modules/blake2b-wasm /var/modules/blake2b-wasm/
@@ -55,6 +53,8 @@ COPY --from=builder /tmp/bitgo/modules/abstract-utxo /var/modules/abstract-utxo/
5553
COPY --from=builder /tmp/bitgo/modules/blockapis /var/modules/blockapis/
5654
COPY --from=builder /tmp/bitgo/modules/sdk-api /var/modules/sdk-api/
5755
COPY --from=builder /tmp/bitgo/modules/sdk-hmac /var/modules/sdk-hmac/
56+
COPY --from=builder /tmp/bitgo/modules/unspents /var/modules/unspents/
57+
COPY --from=builder /tmp/bitgo/modules/utxo-core /var/modules/utxo-core/
5858
COPY --from=builder /tmp/bitgo/modules/utxo-ord /var/modules/utxo-ord/
5959
COPY --from=builder /tmp/bitgo/modules/account-lib /var/modules/account-lib/
6060
COPY --from=builder /tmp/bitgo/modules/sdk-coin-ada /var/modules/sdk-coin-ada/
@@ -143,8 +143,6 @@ cd /var/modules/sdk-opensslbytes && yarn link && \
143143
cd /var/modules/secp256k1 && yarn link && \
144144
cd /var/modules/sjcl && yarn link && \
145145
cd /var/modules/statics && yarn link && \
146-
cd /var/modules/utxo-core && yarn link && \
147-
cd /var/modules/unspents && yarn link && \
148146
cd /var/modules/utxo-lib && yarn link && \
149147
cd /var/modules/blake2b && yarn link && \
150148
cd /var/modules/blake2b-wasm && yarn link && \
@@ -153,6 +151,8 @@ cd /var/modules/abstract-utxo && yarn link && \
153151
cd /var/modules/blockapis && yarn link && \
154152
cd /var/modules/sdk-api && yarn link && \
155153
cd /var/modules/sdk-hmac && yarn link && \
154+
cd /var/modules/unspents && yarn link && \
155+
cd /var/modules/utxo-core && yarn link && \
156156
cd /var/modules/utxo-ord && yarn link && \
157157
cd /var/modules/account-lib && yarn link && \
158158
cd /var/modules/sdk-coin-ada && yarn link && \
@@ -244,8 +244,6 @@ RUN cd /var/bitgo-express && \
244244
yarn link @bitgo/secp256k1 && \
245245
yarn link @bitgo/sjcl && \
246246
yarn link @bitgo/statics && \
247-
yarn link @bitgo/utxo-core && \
248-
yarn link @bitgo/unspents && \
249247
yarn link @bitgo/utxo-lib && \
250248
yarn link @bitgo/blake2b && \
251249
yarn link @bitgo/blake2b-wasm && \
@@ -254,6 +252,8 @@ RUN cd /var/bitgo-express && \
254252
yarn link @bitgo/blockapis && \
255253
yarn link @bitgo/sdk-api && \
256254
yarn link @bitgo/sdk-hmac && \
255+
yarn link @bitgo/unspents && \
256+
yarn link @bitgo/utxo-core && \
257257
yarn link @bitgo/utxo-ord && \
258258
yarn link @bitgo/account-lib && \
259259
yarn link @bitgo/sdk-coin-ada && \

0 commit comments

Comments
 (0)