Reorder cmd args in Dockerfile

This commit is contained in:
Tom Wright 2024-03-28 12:47:13 +00:00
parent c4e03f7d41
commit e3aa335f03
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -74,5 +74,5 @@ RUN mkdir -p ./out
RUN chmod 0777 ./in
RUN chmod 0777 ./out
CMD ["./app", "--mermaid=./node_modules/.bin/mmdc", "--in=./in", "--out=./out", "--puppeteer=./puppeteer-config.json", "--allow-all-origins=true"]
CMD ["./app", "--allow-all-origins=true", "--mermaid=./node_modules/.bin/mmdc", "--in=./in", "--out=./out", "--puppeteer=./puppeteer-config.json"]