Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Security upgrade debian from 12-slim to 13.2-slim#74
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| FROM debian:12-slim AS build | ||
| FROM debian:13.2-slim AS build | ||
| ENV DEBIAN_FRONTEND=noninteractive | ||
| # Install dependencies | ||
| @@ -59,7 +59,7 @@ RUN yarn tsc | ||
| COPY app-config.yaml ./ | ||
| RUN yarn build:backend | ||
| FROM debian:12-slim AS run | ||
| FROM debian:13.2-slim AS run | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Test that the runtime image works correctly with the upgraded Debian version, particularly ensuring mise, Node.js 22.11.0, Python 3.10.12, and corepack function as expected. Prompt To Fix With AIThis is a comment left during a code review.
Path: Dockerfile
Line: 62:62
Comment:
Test that the runtime image works correctly with the upgraded Debian version, particularly ensuring mise, Node.js 22.11.0, Python 3.10.12, and corepack function as expected.
How can I resolve this? If you propose a fix, please make it concise. | ||
| # Install dependencies | ||
| RUN apt-get update && \ | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| module.exports = require('@backstage/cli/config/eslint-factory')(__dirname, { | ||
| rules: { | ||
| 'no-unused-vars': ['error', { varsIgnorePattern: '^_' }], | ||
| 'no-unused-vars': ['error', { varsIgnorePattern: '^_', argsIgnorePattern: '^_' }], | ||
| }, | ||
| }); |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
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.
Verify the build succeeds with Debian 13.2 and that all apt packages install correctly, especially
build-essential,libssl-dev, and other development libraries which may have different versions or names in Debian 13.Prompt To Fix With AI