0

I'm getting the same error as mentioned here, but the error only happens on the automated docker hub build, not when running the Dockerfile locally. I've tried all the solutions mentioned with no success.

enter image description here

jsbroks
  • 530
  • 6
  • 15
  • The current workaround is to [install an earlier version of `ajv`](https://stackoverflow.com/a/54612530/6277151). I would add that to the `Dockerfile`. – tony19 Feb 10 '19 at 04:24

1 Answers1

0

It was an issue related the most recent build. I fixed it by adding

RUN npm uninstall ajv
RUN npm install ajv@6.8.1

to the dockerfile. This should not longer be an issue for anyone or you are using the wrong version of ajv.

jsbroks
  • 530
  • 6
  • 15