forked from reown-com/blockchain-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
91 lines (77 loc) · 2.92 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
################################################################################
#
# Build args
#
################################################################################
ARG base="rust:bookworm"
ARG runtime="debian:bookworm-slim"
ARG bin="rpc-proxy"
ARG version="unknown"
ARG sha="unknown"
ARG maintainer="WalletConnect"
ARG release=""
ARG WORK_DIR="/app"
################################################################################
#
# Install cargo-chef
#
################################################################################
FROM ${base} AS chef
WORKDIR ${WORK_DIR}
RUN cargo install cargo-chef --locked
################################################################################
#
# Generate recipe file
#
################################################################################
FROM chef AS plan
WORKDIR /app
COPY Cargo.lock Cargo.toml ./
COPY src ./src
RUN cargo chef prepare --recipe-path recipe.json
################################################################################
#
# Build the binary
#
################################################################################
FROM chef AS build
ARG release
ARG PROFILE="release-debug"
ARG BUILD_PROFILE="--profile ${PROFILE}"
WORKDIR /app
# Cache dependancies
COPY --from=plan /app/recipe.json recipe.json
COPY irn ./irn
RUN cargo chef cook ${BUILD_PROFILE} --recipe-path recipe.json
# Build the local binary
COPY . .
RUN cargo build --bin rpc-proxy ${RELEASE}
################################################################################
#
# Runtime image
#
################################################################################
FROM ${runtime} AS runtime
ARG bin
ARG version
ARG sha
ARG maintainer
ARG release
ARG binpath=${release:+release}
ARG WORK_DIR
LABEL version=${version}
LABEL sha=${sha}
LABEL maintainer=${maintainer}
ENV RPC_PROXY_HOST=0.0.0.0
WORKDIR /app
COPY --from=build /app/target/${binpath:-debug}/rpc-proxy /usr/local/bin/rpc-proxy
RUN apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates libssl-dev curl \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Enable writing files to the work dir.
RUN chown -R 1001:1001 ${WORK_DIR}
RUN chmod 755 ${WORK_DIR}
USER 1001:1001
EXPOSE 3000/tcp
ENTRYPOINT ["/usr/local/bin/rpc-proxy"]