-
Notifications
You must be signed in to change notification settings - Fork 20
Official Docker image #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
the dockerfile do not work anyway |
FROM node:22.14.0-alpine3.21
RUN npm install -g [email protected]
ENTRYPOINT [ "nodejs", "/usr/local/bin/mcp-graphql" ] worked for me |
Yeah good call, haven't worked with the Dockerfile myself yet, was added for Smithery. Will check it asap and fix and push to docker hub/ghcr :) |
# syntax=docker/dockerfile:1
FROM node:22.14.0-alpine3.21
ARG VERSION
RUN npm install -g mcp-graphql@${VERSION}
ENTRYPOINT [ "nodejs", "/usr/local/bin/mcp-graphql" ] and to build it: export VERSION=1.0.0
docker build --rm \
--build-arg VERSION=${VERSION} \
--tag blurrah/mcp-graphql:${VERSION} |
It's working for me too https://github.com/pl4nty/containers/blob/main/mcp-graphql%2FDockerfile
|
Official Dockerfile is now available at |
You have the
Dockerfile
you should build and push to hub.docker.com the official image!The text was updated successfully, but these errors were encountered: