graphql-engine/v3/custom-connector.Dockerfile
Daniel Harvey 0c52ca1d2e Upgrade to Rust 1.81.0 (#1119)
<!-- The PR description should answer 2 important questions: -->

### What

Update Rust to
[1.81.0](https://blog.rust-lang.org/2024/09/05/Rust-1.81.0.html).

### How

Update `rust-toolchain.yaml` and Dockerfiles

V3_GIT_ORIGIN_REV_ID: 8a1fe694caaded7a12220d2460e66009f969227a
2024-09-18 07:29:12 +00:00

40 lines
1.1 KiB
Docker

# This should match the Rust version in rust-toolchain.yaml and the other Dockerfiles.
FROM rust:1.81.0
WORKDIR app
ENV DEBIAN_FRONTEND=noninteractive
RUN set -ex;\
apt-get update; \
apt-get install --no-install-recommends --assume-yes \
curl git jq pkg-config ssh \
libssl-dev lld protobuf-compiler
# Set up a directory to store Cargo files.
ENV CARGO_HOME=/app/.cargo
ENV PATH="$PATH:$CARGO_HOME/bin"
# Switch to `lld` as the linker.
ENV RUSTFLAGS="-C link-arg=-fuse-ld=lld"
# Building with build.rs requires the Git context to be available across volumes.
ENV GIT_DISCOVERY_ACROSS_FILESYSTEM=1
# Install Rust tools.
COPY rust-toolchain.toml .
RUN rustup show
COPY Cargo.toml Cargo.lock .
RUN mkdir bin
# Build the binaries and tests
RUN --mount=type=cache,target=/app/.cargo/git --mount=type=cache,target=/app/.cargo/registry \
--mount=type=cache,target=./target \
--mount=type=bind,source=./crates,target=./crates \
set -ex; \
cargo build --bin custom-connector
# Copy the binaries out of the cache
RUN --mount=type=cache,target=./target \
find target/debug -maxdepth 1 -type f -executable -exec cp '{}' bin \;