-
Notifications
You must be signed in to change notification settings - Fork 3
/
Dockerfile
62 lines (48 loc) · 2.47 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
####################################################################################################
## Chef
####################################################################################################
FROM rust:latest AS chef
RUN rustup target add x86_64-unknown-linux-musl
RUN apt update && apt install -y musl-tools musl-dev nodejs npm curl
RUN update-ca-certificates
RUN curl --location https://github.com/casey/just/releases/download/1.13.0/just-1.13.0-x86_64-unknown-linux-musl.tar.gz \
--output /tmp/just-1.13.0-x86_64-unknown-linux-musl.tar.gz &&\
echo "f76fce93a71686f6aa6b2db1a39184e736f9ac8248c0489e003c617b49eb2676 /tmp/just-1.13.0-x86_64-unknown-linux-musl.tar.gz" | sha256sum -c &&\
mkdir /tmp/just &&\
tar --directory=/tmp/just -xvf /tmp/just-1.13.0-x86_64-unknown-linux-musl.tar.gz &&\
cp /tmp/just/just /usr/local/bin
RUN cargo install cargo-chef
WORKDIR /avalanche-report
####################################################################################################
## Planner
####################################################################################################
FROM chef AS planner
COPY . .
RUN cargo chef prepare --recipe-path recipe.json
####################################################################################################
## Builder
####################################################################################################
FROM chef AS builder
# Shenanigans in order to cache npm install
COPY package.json .
COPY package-lock.json .
RUN npm install
COPY --from=planner /avalanche-report/recipe.json recipe.json
# Build dependencies - this is the caching Docker layer!
RUN cargo chef cook -p migrations --target x86_64-unknown-linux-musl --release --recipe-path recipe.json
RUN cargo chef cook --target x86_64-unknown-linux-musl --release --recipe-path recipe.json
COPY . .
RUN just tailwind
# For sqlx macro
ARG DATABASE_URL="sqlite://data/db.sqlite3"
RUN cargo run -p migrations --target x86_64-unknown-linux-musl --release
RUN cargo build --target x86_64-unknown-linux-musl --release
####################################################################################################
## Final image
####################################################################################################
FROM alpine AS deploy
WORKDIR /avalanche-report
# Copy our build
COPY --from=builder /avalanche-report/target/x86_64-unknown-linux-musl/release/avalanche-report ./
STOPSIGNAL SIGINT
CMD ["/avalanche-report/avalanche-report"]