Skip to content

Commit 238eadb

Browse files
committed
fix dev.md and added minimal vanilla dockerfile
1 parent 21eceb3 commit 238eadb

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

Diff for: Dockerfile_vanilla

+13
Original file line numberDiff line numberDiff line change
@@ -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

Diff for: dev.md

+4
Original file line numberDiff line numberDiff line change
@@ -101,3 +101,7 @@ USER root
101101
RUN apt update && apt-get -y install git
102102

103103
USER ${ISC_PACKAGE_MGRUSER}
104+
105+
106+
## Python virtual environment
107+
python -m vevn .venv

0 commit comments

Comments
 (0)