We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? Please describe.
I would like to use the docker image in my Gitlab CI pipeline, like, adding a job that uses the docker image and runs:
$ graphql-inspector diff git:origin/main:./graphql/schema.graphql graphql/schema.graphql
But for this to work, the docker image needs git.
Describe the solution you'd like
Adding this to the second stage of the docker file would be enough:
RUN apk add -U git
It would add about 20MB to the generated image.
Describe alternatives you've considered
I can add the apk add -U git to my CI job, but it means hitting and downloading all the packages each time the job runs.
apk add -U git
Additional context
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
I would like to use the docker image in my Gitlab CI pipeline, like, adding a job that uses the docker image and runs:
But for this to work, the docker image needs git.
Describe the solution you'd like
Adding this to the second stage of the docker file would be enough:
RUN apk add -U git
It would add about 20MB to the generated image.
Describe alternatives you've considered
I can add the
apk add -U git
to my CI job, but it means hitting and downloading all the packages each time the job runs.Additional context
The text was updated successfully, but these errors were encountered: