-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
Issue
- Followed instructions as per this document to initiate a ScimVerify cli test , but it looks like this docker image is a non-cli version of scimverify build using
Dockerfileand notDockerfile.cli, so it basically starts up a node express server. - I built the image using
Dockerfile.clilocally, but it failed as it was not pulling devDependencies likeajv. - I fixed this locally by changing
npm cicommand. Below is the entire diff
diff --git a/Dockerfile.cli b/Dockerfile.cli
index 83f967f..f8b681f 100644
--- a/Dockerfile.cli
+++ b/Dockerfile.cli
@@ -9,7 +9,7 @@ WORKDIR /app
COPY package*.json ./
# Install dependencies
-RUN npm ci --only=production
+RUN npm ci
# Create a smaller final image
FROM node:21-alpine
Metadata
Metadata
Assignees
Labels
No labels