We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21eceb3 commit 238eadbCopy full SHA for 238eadb
Dockerfile_vanilla
@@ -0,0 +1,13 @@
1
+FROM containers.intersystems.com/intersystems/iris-community:latest-preview
2
+
3
+RUN --mount=type=bind,src=.,dst=/home/irisowner/irislab <<EOT
4
+wget https://pm.community.intersystems.com/packages/zpm/latest/installer -O /tmp/zpm.xml
5
+iris start iris
6
+cat <<"EOF" | iris session iris -U %SYS
7
+do $system.OBJ.Load("/tmp/zpm.xml", "ck")
8
+Do ##class(Security.Users).UnExpireUserPasswords("*")
9
+zpm "load /home/irisowner/dev -v"
10
+halt
11
+EOF
12
+iris stop iris quietly
13
+EOT
dev.md
@@ -101,3 +101,7 @@ USER root
101
RUN apt update && apt-get -y install git
102
103
USER ${ISC_PACKAGE_MGRUSER}
104
105
106
+## Python virtual environment
107
+python -m vevn .venv
0 commit comments