graphql-engine/v3/dev-auth-webhook.Dockerfile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
580 B
Docker
Raw Normal View History

# build
FROM rust:1.77 AS builder
WORKDIR /app
COPY ./Cargo.toml ./Cargo.toml
COPY ./crates/tracing-util ./crates/tracing-util
COPY ./crates/hasura-authn-webhook/dev-auth-webhook ./crates/hasura-authn-webhook/dev-auth-webhook
WORKDIR /app/crates/hasura-authn-webhook/dev-auth-webhook
RUN cargo build --release
# copy
FROM debian:bookworm-slim
COPY --from=builder /app/crates/hasura-authn-webhook/dev-auth-webhook/target/release/hasura-dev-auth-webhook /usr/bin
RUN apt-get update && \
apt-get install -y openssl
EXPOSE 3050
ENTRYPOINT ["/usr/bin/hasura-dev-auth-webhook"]