scimgateway 5.5.3 → 5.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/config/docker/Dockerfile +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1490,6 +1490,11 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)
|
|
|
1490
1490
|
|
|
1491
1491
|
## Change log
|
|
1492
1492
|
|
|
1493
|
+
### v5.5.4
|
|
1494
|
+
|
|
1495
|
+
[Fixed]
|
|
1496
|
+
- Docker - exclude any package postinstall script to be run `--ignore-scripts`, because of `bun pm trust` prerequirement
|
|
1497
|
+
|
|
1493
1498
|
### v5.5.3
|
|
1494
1499
|
|
|
1495
1500
|
[Fixed]
|
package/config/docker/Dockerfile
CHANGED
|
@@ -30,7 +30,7 @@ ENV NODE_HOME=/home/scimgateway
|
|
|
30
30
|
ADD ./package.json ./bun.lock $NODE_HOME
|
|
31
31
|
|
|
32
32
|
# Install dependencies (exclude test stuff for dependencies)
|
|
33
|
-
RUN . ~/.bashrc && cd $NODE_HOME && bun install --production --frozen-lockfile
|
|
33
|
+
RUN . ~/.bashrc && cd $NODE_HOME && bun install --production --frozen-lockfile --ignore-scripts
|
|
34
34
|
|
|
35
35
|
# Copy your project's code to your working directory
|
|
36
36
|
COPY . $NODE_HOME
|
package/package.json
CHANGED