-
Notifications
You must be signed in to change notification settings - Fork 0
fix(docker): update gateway download URL and fix npm install command for adapters #17
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -23,7 +23,7 @@ ARG TARGETARCH=amd64 | |||||||
| RUN apk add --no-cache curl ca-certificates && \ | ||||||||
| ARCHIVE="rep-gateway_${GATEWAY_VERSION}_linux_${TARGETARCH}.tar.gz" && \ | ||||||||
| curl -fsSL \ | ||||||||
| "https://github.com/RuachTech/rep/releases/download/gateway/v${GATEWAY_VERSION}/${ARCHIVE}" \ | ||||||||
| "https://github.com/RuachTech/rep/releases/download/v${GATEWAY_VERSION}/${ARCHIVE}" \ | ||||||||
|
||||||||
| "https://github.com/RuachTech/rep/releases/download/v${GATEWAY_VERSION}/${ARCHIVE}" \ | |
| "https://github.com/RuachTech/rep/releases/download/gateway/v${GATEWAY_VERSION}/${ARCHIVE}" \ |
Copilot
AI
Feb 26, 2026
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.
npm install --omit=dev will omit build tooling (e.g. vite, typescript, @vitejs/plugin-react), but this stage runs npm run build which depends on those devDependencies. This will cause the Docker build to fail. Install devDependencies in the build stage (default behavior) and rely on the final FROM scratch stage to keep the runtime image minimal.
| # install on main deps only, | |
| RUN npm install --omit=dev | |
| RUN npm install |
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.
The comment says this job “always succeeds”, but on
pushtheCreate missing manifest tags...step can still fail (e.g. git push / GH API errors), which will fail the job and block downstream jobs. Either reword this to “not skipped on workflow_dispatch” (the key behavior change), or explicitly setcontinue-on-error: truefor the recovery step if the intent is to never block releases.