Using docxtemplater in jsreport studio docker image
-
Hi.
I have successfully been able to upload and use the docxtemplater recipe on my local test jsreport servers (version 2.5.0)
We want to implement docxtemplater on our production site, which is a docker image.
We have just updated the production docker servers to 2.5.0, and the docxtemplater recipe is not there.
Can you tel me what the process is to use docxtemplater with docker?
Cheers,
Ari
-
hi! you can extend the jsreport docker image and install custom extensions there.
i believe you need something like these
FROM jsreport/jsreport:2.5.0-full RUN npm install jsreport-docxtemplater
you can build your own jsreport image with the above, which will have the docxtemplater enabled
-
you can also use
FROM jsreport/jsreport:2.5.0
if you want to extend the most lightweight image