Skip to main content
Glama
Dockerfile1.26 kB
FROM alpine:3 AS buck2 RUN apk add --no-cache curl zstd libc6-compat RUN ARCH=$(uname -m); \ case "$ARCH" in \ x86_64) BUCK2_ARCH="x86_64";; \ aarch64) BUCK2_ARCH="aarch64";; \ *) echo "unsupported arch $ARCH" && exit 1;; \ esac; \ curl -L \ "https://github.com/facebook/buck2/releases/download/latest/buck2-${BUCK2_ARCH}-unknown-linux-musl.zst" \ -o /tmp/buck2.zst && \ unzstd /tmp/buck2.zst -c > /bin/buck2 && chmod +x /bin/buck2 FROM rust:1-alpine ARG BUILDEVENTS_VERSION=v0.17.0 RUN apk add --no-cache \ curl \ bash \ git \ github-cli \ musl-dev \ openssh-client \ python3 \ docker \ docker-cli-compose RUN set -eux; \ ARCH="$(arch)"; \ case "${ARCH}" in \ x86_64) BUILDEVENTS_ARCH="linux-amd64" ;; \ aarch64) BUILDEVENTS_ARCH="linux-arm64" ;; \ *) echo "Unsupported architecture: ${ARCH}" && exit 1 ;; \ esac && \ curl -L -o /usr/local/bin/buildevents \ "https://github.com/honeycombio/buildevents/releases/download/${BUILDEVENTS_VERSION}/buildevents-${BUILDEVENTS_ARCH}" && \ chmod +x /usr/local/bin/buildevents COPY --from=buck2 /bin/buck2 /usr/local/bin/buck2 RUN rustup component add clippy rustfmt

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/systeminit/si'

If you have feedback or need assistance with the MCP directory API, please join our Discord server