Skip to content

Commit

Permalink
fix dev.md and added minimal vanilla dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
evshvarov committed Aug 2, 2024
1 parent 21eceb3 commit 238eadb
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile_vanilla
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM containers.intersystems.com/intersystems/iris-community:latest-preview

RUN --mount=type=bind,src=.,dst=/home/irisowner/irislab <<EOT
wget https://pm.community.intersystems.com/packages/zpm/latest/installer -O /tmp/zpm.xml
iris start iris
cat <<"EOF" | iris session iris -U %SYS
do $system.OBJ.Load("/tmp/zpm.xml", "ck")
Do ##class(Security.Users).UnExpireUserPasswords("*")
zpm "load /home/irisowner/dev -v"
halt
EOF
iris stop iris quietly
EOT
4 changes: 4 additions & 0 deletions dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,7 @@ USER root
RUN apt update && apt-get -y install git

USER ${ISC_PACKAGE_MGRUSER}


## Python virtual environment
python -m vevn .venv

0 comments on commit 238eadb

Please sign in to comment.