-
Notifications
You must be signed in to change notification settings - Fork 6
/
Dockerfile
82 lines (71 loc) · 2.79 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
################################################################################
#
# Build args
#
################################################################################
ARG base="rust:buster"
ARG runtime="debian:buster-slim"
ARG bin="notify-server"
ARG version="unknown"
ARG sha="unknown"
ARG maintainer="WalletConnect"
ARG release=""
################################################################################
#
# Install cargo-chef
#
################################################################################
FROM ${base} AS chef
WORKDIR /app
RUN cargo install cargo-chef
################################################################################
#
# 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
ENV RELEASE=${release:+--release}
WORKDIR /app
# Cache dependancies
COPY --from=plan /app/recipe.json recipe.json
RUN cargo chef cook --recipe-path recipe.json ${RELEASE}
# Build the local binary
COPY . .
RUN cargo build --bin notify-server ${RELEASE}
# Certificate file required to use TLS with AWS DocumentDB.
RUN wget https://s3.amazonaws.com/rds-downloads/rds-combined-ca-bundle.pem
################################################################################
#
# Runtime image
#
################################################################################
FROM ${runtime} AS runtime
ARG bin
ARG version
ARG sha
ARG maintainer
ARG release
ARG binpath=${release:+release}
LABEL version=${version}
LABEL sha=${sha}
LABEL maintainer=${maintainer}
WORKDIR /app
COPY --from=build /app/target/${binpath:-debug}/notify-server /usr/local/bin/notify-server
COPY --from=build /app/rds-combined-ca-bundle.pem /app/rds-combined-ca-bundle.pem
RUN apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates libssl-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
USER 1001:1001
ENTRYPOINT ["/usr/local/bin/notify-server"]