forked from graphprotocol/graph-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
109 lines (93 loc) · 3.64 KB
/
Dockerfile
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
# Full build with debuginfo for graph-node
#
# The expectation if that the docker build uses the parent directory as PWD
# by running something like the following
# docker build --target STAGE -f docker/Dockerfile .
FROM golang:bookworm AS envsubst
# v1.2.0
ARG ENVSUBST_COMMIT_SHA=16035fe3571ad42c7796bf554f978bb2df64231b
# We ship `envsubst` with the final image to facilitate env. var. templating in
# the configuration file.
RUN go install github.com/a8m/envsubst/cmd/envsubst@$ENVSUBST_COMMIT_SHA \
&& strip -g /go/bin/envsubst
FROM rust:bookworm AS graph-node-build
ARG COMMIT_SHA=unknown
ARG REPO_NAME=unknown
ARG BRANCH_NAME=unknown
ARG TAG_NAME=unknown
ADD . /graph-node
RUN apt-get update \
&& apt-get install -y cmake protobuf-compiler && \
cd /graph-node && \
RUSTFLAGS="-g" cargo build --release --package graph-node \
&& cp target/release/graph-node /usr/local/bin/graph-node \
&& cp target/release/graphman /usr/local/bin/graphman \
# Reduce the size of the layer by removing unnecessary files.
&& cargo clean \
&& objcopy --only-keep-debug /usr/local/bin/graph-node /usr/local/bin/graph-node.debug \
&& strip -g /usr/local/bin/graph-node \
&& strip -g /usr/local/bin/graphman \
&& cd /usr/local/bin \
&& objcopy --add-gnu-debuglink=graph-node.debug graph-node \
&& echo "REPO_NAME='$REPO_NAME'" > /etc/image-info \
&& echo "TAG_NAME='$TAG_NAME'" >> /etc/image-info \
&& echo "BRANCH_NAME='$BRANCH_NAME'" >> /etc/image-info \
&& echo "COMMIT_SHA='$COMMIT_SHA'" >> /etc/image-info \
&& echo "CARGO_VERSION='$(cargo --version)'" >> /etc/image-info \
&& echo "RUST_VERSION='$(rustc --version)'" >> /etc/image-info \
&& echo "CARGO_DEV_BUILD='$CARGO_DEV_BUILD'" >> /etc/image-info
# Debug image to access core dumps
FROM graph-node-build AS graph-node-debug
RUN apt-get update \
&& apt-get install -y curl gdb postgresql-client
COPY docker/Dockerfile /Dockerfile
COPY docker/bin/* /usr/local/bin/
# The graph-node runtime image with only the executable
FROM debian:bookworm-20241111-slim AS graph-node
ENV RUST_LOG=""
ENV GRAPH_LOG=""
ENV EARLY_LOG_CHUNK_SIZE=""
ENV ETHEREUM_RPC_PARALLEL_REQUESTS=""
ENV ETHEREUM_BLOCK_CHUNK_SIZE=""
ENV postgres_host=""
ENV postgres_user=""
ENV postgres_pass=""
ENV postgres_db=""
ENV postgres_args="sslmode=prefer"
# The full URL to the IPFS node
ENV ipfs=""
# The etherum network(s) to connect to. Set this to a space-separated
# list of the networks where each entry has the form NAME:URL
ENV ethereum=""
# The role the node should have, one of index-node, query-node, or
# combined-node
ENV node_role="combined-node"
# The name of this node
ENV node_id="default"
# The ethereum network polling interval (in milliseconds)
ENV ethereum_polling_interval=""
# The location of an optional configuration file for graph-node, as
# described in ../docs/config.md
# Using a configuration file is experimental, and the file format may
# change in backwards-incompatible ways
ENV GRAPH_NODE_CONFIG=""
# Disable core dumps; this is useful for query nodes with large caches. Set
# this to anything to disable coredumps (via 'ulimit -c 0')
ENV disable_core_dumps=""
# HTTP port
EXPOSE 8000
# WebSocket port
EXPOSE 8001
# JSON-RPC port
EXPOSE 8020
# Indexing status port
EXPOSE 8030
RUN apt-get update \
&& apt-get install -y libpq-dev ca-certificates \
netcat-openbsd
ADD docker/wait_for docker/start /usr/local/bin/
COPY --from=graph-node-build /usr/local/bin/graph-node /usr/local/bin/graphman /usr/local/bin/
COPY --from=graph-node-build /etc/image-info /etc/image-info
COPY --from=envsubst /go/bin/envsubst /usr/local/bin/
COPY docker/Dockerfile /Dockerfile
CMD ["start"]