Question Yuri Marx · Sep 15, 2021 Zpm for iris automl community #Docker #InterSystems Package Manager (IPM) #InterSystems IRIS Hi community, Do you have docker automl docker image with zpm? Product version: IRIS 2021.1
Yuri Marx · Sep 15, 2021 I copied zpm-0.3.0.xml from https://pm.community.intersystems.com/packages/zpm/latest/installer to my project and added the following lines in my docker file and in my iris.script dockerfile:COPY zpm-0.3.0.xml . iris.script:do $SYSTEM.OBJ.Load("/opt/irisapp/zpm-0.3.0.xml","ck") Worked fine!!! Sample: https://github.com/yurimarx/automl-nasdaq
Sergei Shutov Sep 16, 2021 to Yuri Marx This is how I do it, instead of COPY just download from GitHub - and then you can do OBJ.Load RUN wget https://github.com/intersystems-community/zpm/releases/download/v0.3.0/z...
Dmitry Maslennikov Sep 16, 2021 to Sergei Shutov I would recommend downloading ZPM directly from its registry Versioned link https://pm.community.intersystems.com/packages/zpm/0.3.0/installer Or latest version https://pm.community.intersystems.com/packages/zpm/latest/installer
I copied zpm-0.3.0.xml from https://pm.community.intersystems.com/packages/zpm/latest/installer to my project and added the following lines in my docker file and in my iris.script
dockerfile:
COPY zpm-0.3.0.xml .
iris.script:
do $SYSTEM.OBJ.Load("/opt/irisapp/zpm-0.3.0.xml","ck")
Worked fine!!!
Sample: https://github.com/yurimarx/automl-nasdaq
This is how I do it, instead of COPY just download from GitHub - and then you can do OBJ.Load
I would recommend downloading ZPM directly from its registry
Versioned link
https://pm.community.intersystems.com/packages/zpm/0.3.0/installer
Or latest version
https://pm.community.intersystems.com/packages/zpm/latest/installer
intersystemsdc/iris-ml-community