mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 09:22:43 +03:00
64657639d4
<!-- Thank you for submitting this PR! :) --> ## Description Upgrade Rust, as a treat. Functional no-op. --------- Co-authored-by: Samir Talwar <samir@functional.computer> V3_GIT_ORIGIN_REV_ID: 1e0014049e89b8658326c8d8f652df800c415526
21 lines
488 B
Docker
21 lines
488 B
Docker
# This should match the Rust version in rust-toolchain.yaml and the other Dockerfiles.
|
|
FROM rust:1.79.0 AS builder
|
|
|
|
WORKDIR /app
|
|
COPY ./Cargo.toml ./Cargo.toml
|
|
COPY ./crates ./crates
|
|
|
|
WORKDIR /app/crates/auth/dev-auth-webhook
|
|
RUN cargo build --release --package=dev-auth-webhook
|
|
|
|
# copy
|
|
FROM debian:bookworm-slim
|
|
|
|
COPY --from=builder /app/target/release/dev-auth-webhook /usr/bin
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y openssl
|
|
|
|
EXPOSE 3050
|
|
ENTRYPOINT ["/usr/bin/dev-auth-webhook"]
|