Dockerized https://github.com/xeipuuv/gojsonschema
544
This repo is "dockerizing" the https://github.com/xeipuuv/gojsonschema.
docker run --rm -v "$(pwd):/app" -w /app mingalevme/gojsonschema -s test/testdata/schema.json test/testdata/document-valid.json
image: alpine
stages:
- quality
gojsonschema:
stage: quality
needs: []
image:
name: mingalevme/gojsonschema
entrypoint: [""]
script:
- gojsonschema -s schema.json products.json
docker build --target gojsonschema -t gojsonschema .
docker run --rm -v "$(pwd):/app" -w /opt gojsonschema -s test/testdata/schema.json test/testdata/document-valid.json
https://github.com/mingalevme/gojsonschema/blob/master/Dockerfile
Content type
Image
Digest
sha256:07c1eafc7…
Size
10.2 MB
Last updated
7 months ago
docker pull mingalevme/gojsonschema