Skip to content

Commit

Permalink
* fixed docker ports
Browse files Browse the repository at this point in the history
* fixed version
* fixed jest tests
  • Loading branch information
agnybida committed Jun 27, 2024
1 parent d597a6a commit 679b2c6
Show file tree
Hide file tree
Showing 4 changed files with 575 additions and 1,758 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ FROM $IMAGE
WORKDIR /home/irisowner/irisdev

## install git
## USER root
## USER root
##RUN apt update && apt-get -y install git
##USER ${ISC_PACKAGE_MGRUSER}

Expand All @@ -26,7 +26,6 @@ ENV PATH "/usr/irissys/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sb


RUN --mount=type=bind,src=.,dst=. \
pip3 install -r requirements.txt && \
iris start IRIS && \
iris session IRIS < iris.script && \
([ $TESTS -eq 0 ] || iris session iris -U $NAMESPACE "##class(%ZPM.PackageManager).Shell(\"test $MODULE -v -only\",1,1)") && \
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
version: '3.6'
services:
iris:
build:
build:
context: .
dockerfile: Dockerfile
restart: always
command: --check-caps false
ports:
- 1972
- 52773
- 53773
ports:
- "1972:1972"
- "52773:52773"
- "53773:53773"
volumes:
- ./:/home/irisowner/irisdev
Loading

0 comments on commit 679b2c6

Please sign in to comment.