bennofs / wdumper

Tool for generating filtered Wikidata RDF exports

Home Page:https://tools.wmflabs.org/wdumps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DockerFile entrypoint problem

ammar257ammar opened this issue · comments

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.