generated from holaplex/hub-rust-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
45 lines (38 loc) · 1.06 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
FROM rust:1.69.0-bullseye as chef
RUN cargo install cargo-chef --locked
WORKDIR /app
RUN apt-get update -y && \
apt-get install -y --no-install-recommends \
cmake \
g++ \
libsasl2-dev \
libssl-dev \
libudev-dev \
pkg-config \
protobuf-compiler \
&& \
rm -rf /var/lib/apt/lists/*
FROM chef AS planner
COPY Cargo.* .
COPY consumer consumer
RUN cargo chef prepare --recipe-path recipe.json
FROM chef AS builder
COPY --from=planner /app/recipe.json recipe.json
# Build dependencies - this is the caching Docker layer!
RUN cargo chef cook --release --recipe-path recipe.json
# Build application
COPY Cargo.* .
COPY consumer consumer
RUN cargo build --release --bin holaplex-hub-messages
FROM debian:bullseye-slim as base
WORKDIR /app
RUN apt-get update -y && \
apt-get install -y --no-install-recommends \
ca-certificates \
libpq5 \
libssl1.1 \
&& \
rm -rf /var/lib/apt/lists/*
COPY templates /app/templates
COPY --from=builder /app/target/release/holaplex-hub-messages /usr/local/bin
ENTRYPOINT ["/usr/local/bin/holaplex-hub-messages"]