-
Notifications
You must be signed in to change notification settings - Fork 577
Containerising inspector #257
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+136
−0
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
6ee7627
Initial work for adding a Dockerfile and creating an image for inspector
aaronpowell 1d629d7
Merge branch 'main' into dockerfile
aaronpowell 6d561a0
Updating workflow to publish to GitHub Container Registry
aaronpowell d9e63d9
Merge branch 'main' into dockerfile
aaronpowell ad8d057
Fixing prettier error
aaronpowell 890f6fd
Dockerfile (#1)
aaronpowell 9e186e3
ci fix (#2)
aaronpowell b0031d0
Fixing permissions (#3)
aaronpowell 243fd14
Fixing permissions
aaronpowell 652027d
Merge branch 'main' into dockerfile
cliffhall ef6d849
Apply suggestions from code review
aaronpowell 769d045
Converting to multi-stage dockerfile
aaronpowell 48af479
Merge remote-tracking branch 'upstream' into dockerfile
aaronpowell f73894f
Allowing setting of the ports at the environment variable level so th…
aaronpowell 676d454
Merge branch 'modelcontextprotocol:main' into main
aaronpowell 30a74d7
Merge branch 'main' into dockerfile
aaronpowell 37bd103
Support for multi-platform builds
aaronpowell c8016cd
Merge branch 'main' into dockerfile
cliffhall e903662
Merge branch 'main' into dockerfile
aaronpowell File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Version control | ||
.git | ||
.gitignore | ||
|
||
# Node.js | ||
node_modules | ||
npm-debug.log | ||
|
||
# Build artifacts | ||
client/dist | ||
client/build | ||
server/dist | ||
server/build | ||
|
||
# Environment variables | ||
.env | ||
.env.local | ||
.env.development | ||
.env.test | ||
.env.production | ||
|
||
# Editor files | ||
.vscode | ||
.idea | ||
|
||
# Logs | ||
logs | ||
*.log | ||
|
||
# Testing | ||
coverage | ||
|
||
# Docker | ||
Dockerfile | ||
.dockerignore |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Build stage | ||
FROM node:24-slim AS builder | ||
|
||
# Set working directory | ||
WORKDIR /app | ||
|
||
# Copy package files for installation | ||
COPY package*.json ./ | ||
COPY .npmrc ./ | ||
COPY client/package*.json ./client/ | ||
COPY server/package*.json ./server/ | ||
COPY cli/package*.json ./cli/ | ||
|
||
# Install dependencies | ||
RUN npm ci --ignore-scripts | ||
|
||
# Copy source files | ||
COPY . . | ||
|
||
# Build the application | ||
RUN npm run build | ||
|
||
# Production stage | ||
FROM node:24-slim | ||
|
||
WORKDIR /app | ||
|
||
# Copy package files for production | ||
COPY package*.json ./ | ||
COPY .npmrc ./ | ||
COPY client/package*.json ./client/ | ||
COPY server/package*.json ./server/ | ||
COPY cli/package*.json ./cli/ | ||
|
||
# Install only production dependencies | ||
RUN npm ci --omit=dev --ignore-scripts | ||
|
||
# Copy built files from builder stage | ||
COPY --from=builder /app/client/dist ./client/dist | ||
COPY --from=builder /app/client/bin ./client/bin | ||
COPY --from=builder /app/server/build ./server/build | ||
COPY --from=builder /app/cli/build ./cli/build | ||
|
||
# Set default port values as environment variables | ||
ENV CLIENT_PORT=6274 | ||
ENV SERVER_PORT=6277 | ||
|
||
# Document which ports the application uses internally | ||
EXPOSE ${CLIENT_PORT} ${SERVER_PORT} | ||
|
||
# Use ENTRYPOINT with CMD for arguments | ||
ENTRYPOINT ["npm", "start"] |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That secret is provided by GitHub as part of Actions, it doesn't need to be setup