When building the Dockerfile by running docker build --no-cache -t software-planning-mcp . I get the following error:
2.338 > software-planning-tool@0.1.0 build
2.338 > tsc && node -e "require('fs').chmodSync('build/index.js', '755')"
2.338
2.515 error TS18003: No inputs were found in config file '/app/tsconfig.json'. Specified 'include' paths were '["src/**/*"]' and 'exclude' paths were '["node_modules"]'.
2.545 ELIFECYCLE Command failed with exit code 2.
I was able to fix this by forking your repository and moving the line COPY . . above the npm install line and removing the previous COPY command. I am guessing that something that should be copied isn't being copied 🤔
When building the Dockerfile by running
docker build --no-cache -t software-planning-mcp .I get the following error:I was able to fix this by forking your repository and moving the line
COPY . .above thenpm installline and removing the previous COPY command. I am guessing that something that should be copied isn't being copied 🤔