-
Notifications
You must be signed in to change notification settings - Fork 783
Expand file tree
/
Copy pathecash-herald.Dockerfile
More file actions
129 lines (102 loc) · 4.57 KB
/
ecash-herald.Dockerfile
File metadata and controls
129 lines (102 loc) · 4.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# Copyright (c) 2024 The Bitcoin developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
# Multi-stage
# 1) rust image for ecash-lib
# 2) Node image for prod deployment of ecash-lib
# 1) rust image for ecash-lib
FROM rust:1.87.0 AS wasmbuilder
RUN apt-get update \
&& apt-get install clang binaryen -y \
&& rustup target add wasm32-unknown-unknown \
&& cargo install -f --locked wasm-bindgen-cli@0.2.92
# Copy Cargo.toml
WORKDIR /app/
COPY Cargo.toml .
# Copy chronik to same directory structure as monorepo
# This needs to be in place to run ./build-wasm
WORKDIR /app/chronik/
COPY chronik/ .
# explorer must be in place to to run ./build-wasm as it is a workspace member
WORKDIR /app/web/explorer
COPY web/explorer/ .
# bitcoinsuite-chronik-client must be in place to to run ./build-wasm as it is a workspace member
WORKDIR /app/modules/bitcoinsuite-chronik-client
COPY modules/bitcoinsuite-chronik-client/ .
# avalanche-lib-wasm must be in place to to run ./build-wasm as it is a workspace member
WORKDIR /app/modules/avalanche-lib-wasm
COPY modules/avalanche-lib-wasm/ .
# proof-manager-cli must be in place to to run ./build-wasm as it is a workspace member
WORKDIR /app/apps/proof-manager-cli
COPY apps/proof-manager-cli/ .
# Copy secp256k1 to same directory structure as monorepo
WORKDIR /app/src/secp256k1
COPY src/secp256k1/ .
# Copy ecash-secp256k1, ecash-lib and ecash-lib-wasm files to same directory structure as monorepo
WORKDIR /app/modules/ecash-secp256k1
COPY modules/ecash-secp256k1 .
WORKDIR /app/modules/ecash-lib
COPY modules/ecash-lib .
WORKDIR /app/modules/ecash-lib-wasm
COPY modules/ecash-lib-wasm .
# Build web assembly for ecash-lib
RUN CC=clang ./build-wasm.sh
# 2) Node image for prod deployment of token-server
# Node image for prod deployment of ecash-herald
FROM node:22-bookworm-slim
# Install pnpm
RUN npm install -g pnpm
# Set working directory to monorepo root
WORKDIR /app
# Copy workspace files
COPY pnpm-workspace.yaml .
COPY pnpm-lock.yaml .
COPY package.json .
# Copy static assets from wasmbuilder stage (ecash-lib-wasm and ecash-lib, with wasm built in place)
COPY --from=wasmbuilder /app/modules ./modules
# Copy package.json files for dependency resolution
COPY modules/ecashaddrjs/package.json ./modules/ecashaddrjs/
COPY modules/chronik-client/package.json ./modules/chronik-client/
COPY modules/b58-ts/package.json ./modules/b58-ts/
COPY modules/ecash-lib/package.json ./modules/ecash-lib/
COPY modules/ecash-wallet/package.json ./modules/ecash-wallet/
COPY modules/ecash-agora/package.json ./modules/ecash-agora/
COPY modules/mock-chronik-client/package.json ./modules/mock-chronik-client/
COPY apps/ecash-herald/package.json ./apps/ecash-herald/
# Fetch dependencies (pnpm best practice for Docker)
RUN pnpm fetch --frozen-lockfile
# Copy source files
COPY modules/ecashaddrjs/ ./modules/ecashaddrjs/
COPY modules/chronik-client/ ./modules/chronik-client/
COPY modules/b58-ts/ ./modules/b58-ts/
COPY modules/ecash-lib/ ./modules/ecash-lib/
COPY modules/ecash-wallet/ ./modules/ecash-wallet/
COPY modules/ecash-agora/ ./modules/ecash-agora/
COPY modules/mock-chronik-client/ ./modules/mock-chronik-client/
COPY modules/ecash-price/ ./modules/ecash-price/
COPY apps/ecash-herald/ ./apps/ecash-herald/
# Install dependencies for local modules first
RUN pnpm install --frozen-lockfile --offline --filter b58-ts...
RUN pnpm install --frozen-lockfile --offline --filter ecashaddrjs...
RUN pnpm install --frozen-lockfile --offline --filter chronik-client...
RUN pnpm install --frozen-lockfile --offline --filter ecash-lib...
RUN pnpm install --frozen-lockfile --offline --filter ecash-wallet...
RUN pnpm install --frozen-lockfile --offline --filter ecash-agora...
RUN pnpm install --frozen-lockfile --offline --filter mock-chronik-client...
RUN pnpm install --frozen-lockfile --offline --filter ecash-price...
# Build local modules
RUN pnpm --filter b58-ts run build
RUN pnpm --filter ecashaddrjs run build
RUN pnpm --filter chronik-client run build
RUN pnpm --filter ecash-lib run build
RUN pnpm --filter ecash-wallet run build
RUN pnpm --filter ecash-agora run build
RUN pnpm --filter mock-chronik-client run build
RUN pnpm --filter ecash-price run build
# Install dependencies for ecash-herald (now that local modules are built)
RUN pnpm install --frozen-lockfile --offline --filter ecash-herald...
# Build ecash-herald from monorepo root
RUN pnpm --filter ecash-herald run build
# ecash-herald runs with "node dist/index.js" from the app directory
WORKDIR /app/apps/ecash-herald
CMD [ "node", "dist/index.js" ]