mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
6581657f8b
V3_GIT_ORIGIN_REV_ID: 4a5b5d1870637461c2c4b7d50da80cf0ca74847b
70 lines
1.7 KiB
Docker
70 lines
1.7 KiB
Docker
# See https://github.com/LukeMathWalker/cargo-chef
|
|
FROM rust:1.75.0 as chef
|
|
|
|
WORKDIR app
|
|
|
|
RUN apt-get update \
|
|
&& DEBIAN_FRONTEND=noninteractive \
|
|
apt-get install --no-install-recommends --assume-yes \
|
|
lld protobuf-compiler libssl-dev ssh git pkg-config curl jq
|
|
|
|
ENV CARGO_HOME=/app/.cargo
|
|
|
|
RUN cargo install cargo-chef just grcov critcmp cargo-nextest
|
|
|
|
RUN rustup component add clippy
|
|
RUN rustup component add rustfmt
|
|
# needed for coverage reporting
|
|
RUN rustup component add llvm-tools-preview
|
|
|
|
# Building with build.rs require git context to be available across directories
|
|
ENV GIT_DISCOVERY_ACROSS_FILESYSTEM=1
|
|
|
|
###
|
|
# Plan recipe
|
|
FROM chef AS planner
|
|
|
|
ENV CARGO_HOME=/app/.cargo
|
|
ENV RUSTFLAGS="-C link-arg=-fuse-ld=lld"
|
|
|
|
COPY . .
|
|
RUN cargo chef prepare --recipe-path recipe.json
|
|
|
|
###
|
|
# Build recipe
|
|
FROM chef AS builder
|
|
|
|
# Use lld
|
|
ENV CARGO_HOME=/app/.cargo
|
|
ENV PATH="$PATH:$CARGO_HOME/bin"
|
|
ENV RUSTFLAGS="-C link-arg=-fuse-ld=lld"
|
|
|
|
COPY --from=planner /app/recipe.json recipe.json
|
|
COPY --from=planner /app/.cargo/config.toml /app/.cargo/config.toml
|
|
|
|
# Build dependencies - this is the caching Docker layer!
|
|
RUN cargo chef cook --release --all-targets --recipe-path recipe.json
|
|
RUN cargo chef cook --all-targets --recipe-path recipe.json
|
|
|
|
# Copies the source after building dependencies to allow caching
|
|
COPY . .
|
|
|
|
###
|
|
# Builds the application
|
|
FROM builder AS built
|
|
# Build the app
|
|
RUN cargo build --release
|
|
|
|
###
|
|
# Ship the app in an image with `curl` and very little else
|
|
FROM ubuntu:jammy
|
|
|
|
# Install `curl` for health checks
|
|
RUN set -ex; \
|
|
apt-get update -q; \
|
|
apt-get install -q -y curl
|
|
|
|
# Install the engine
|
|
COPY --from=built /app/target/release/engine /usr/local/bin
|
|
ENTRYPOINT ["engine"]
|