bennofs / wdumper

Tool for generating filtered Wikidata RDF exports
https://tools.wmflabs.org/wdumps
MIT License
36 stars 5 forks source link

DockerFile entrypoint problem #24

Closed ammar257ammar closed 3 years ago

ammar257ammar commented 3 years ago

In the DockerFile line 10 https://github.com/bennofs/wdumper/blob/master/Dockerfile

ENTRYPOINT "/src/build/install/wdumper/bin/wdumper-cli"

should be

ENTRYPOINT ["/src/build/install/wdumper/bin/wdumper-cli"]

The brackets [] means this is an array and the arguments the user provides will be appended to the array. Without the brackets it will ignore any arguments provided by the user and run the entrypoint command alone.