-
Notifications
You must be signed in to change notification settings - Fork 3
feat(docker): upgrade base images and dependencies to DHI trixie #35
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
aron-muon
merged 2 commits into
aron-muon:main
from
nosportugal:task-docker-image-deps-upgrade
Mar 2, 2026
+297
−233
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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,58 @@ | ||
| root = true | ||
|
|
||
| [*] | ||
| end_of_line = lf | ||
| insert_final_newline = true | ||
| trim_trailing_whitespace = true | ||
| charset = utf-8 | ||
|
|
||
| [*.py] | ||
| indent_style = space | ||
| indent_size = 4 | ||
| max_line_length = 120 | ||
|
|
||
| [*.go] | ||
| indent_style = tab | ||
| indent_size = 4 | ||
|
|
||
| [*.{yml,yaml}] | ||
| indent_style = space | ||
| indent_size = 2 | ||
|
|
||
| [*.{sh,bash}] | ||
| indent_style = space | ||
| indent_size = 2 | ||
|
|
||
| [*.{toml,cfg,ini}] | ||
| indent_style = space | ||
| indent_size = 4 | ||
|
|
||
| [*.{js,ts,json}] | ||
| indent_style = space | ||
| indent_size = 2 | ||
|
|
||
| [*.{html,css}] | ||
| indent_style = space | ||
| indent_size = 2 | ||
|
|
||
| [*.md] | ||
| trim_trailing_whitespace = false | ||
|
|
||
| [Dockerfile*] | ||
| indent_style = space | ||
| indent_size = 4 | ||
|
|
||
| [Makefile] | ||
| indent_style = tab | ||
|
|
||
| [justfile] | ||
| indent_style = space | ||
| indent_size = 4 | ||
|
|
||
| [*.{tf,hcl}] | ||
| indent_style = space | ||
| indent_size = 2 | ||
|
|
||
| [helm-deployments/**/*.yaml] | ||
| indent_style = space | ||
| indent_size = 2 | ||
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
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
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
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 |
|---|---|---|
| @@ -1,18 +1,22 @@ | ||
| module preload | ||
|
|
||
| go 1.25 | ||
| go 1.26 | ||
|
|
||
| require ( | ||
| github.com/gorilla/mux v1.8.1 | ||
| github.com/davidbyttow/govips/v2 v2.16.0 | ||
| github.com/fatih/color v1.18.0 | ||
| github.com/gin-gonic/gin v1.11.0 | ||
| github.com/sirupsen/logrus v1.9.4 | ||
| github.com/gocarina/gocsv v0.0.0-20240520201108-78e41c74b4b1 | ||
| github.com/google/uuid v1.6.0 | ||
| github.com/shopspring/decimal v1.4.0 | ||
| gonum.org/v1/gonum v0.17.0 | ||
| github.com/gorilla/mux v1.8.1 | ||
| github.com/montanaflynn/stats v0.7.1 | ||
| github.com/xuri/excelize/v2 v2.10.0 | ||
| github.com/shopspring/decimal v1.4.0 | ||
| github.com/sirupsen/logrus v1.9.4 | ||
| github.com/spf13/cobra v1.10.2 | ||
| github.com/fatih/color v1.18.0 | ||
| github.com/gocarina/gocsv v0.0.0-20240520201108-78e41c74b4b1 | ||
| github.com/tidwall/gjson v1.18.0 | ||
| github.com/unidoc/unioffice/v2 v2.8.0 | ||
| github.com/xuri/excelize/v2 v2.10.0 | ||
| github.com/yuin/goldmark v1.7.16 | ||
| gonum.org/v1/gonum v0.17.0 | ||
| gopkg.in/yaml.v3 v3.0.1 | ||
| ) |
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 |
|---|---|---|
| @@ -1,34 +1,58 @@ | ||
| # Node.js global packages | ||
| # One package per line for npm install -g | ||
| # Node.js packages | ||
| # One package per line: npm install -g <package> | ||
|
|
||
| lodash | ||
| # Core utilities | ||
| archiver | ||
| axios | ||
| moment | ||
| uuid | ||
| chalk | ||
| commander | ||
| express | ||
| fs-extra | ||
| csv-parser | ||
| json2csv | ||
| papaparse | ||
| archiver | ||
| yauzl | ||
| pdf-lib | ||
| crypto-js | ||
| date-fns | ||
| fs-extra | ||
| lodash | ||
| luxon | ||
| uuid | ||
| validator | ||
| crypto-js | ||
| zod | ||
|
|
||
| # Web scraping & parsing | ||
| cheerio | ||
|
|
||
| # Data processing | ||
| papaparse | ||
| mathjs | ||
| ml-matrix | ||
| simple-statistics | ||
| sharp | ||
|
|
||
| # File formats - Office documents | ||
| exceljs | ||
| xlsx | ||
| pptxgenjs | ||
| mammoth | ||
|
|
||
| # File formats - Other | ||
| js-yaml | ||
| marked | ||
| pdf-lib | ||
|
|
||
| # Images | ||
| jimp | ||
| sharp | ||
|
|
||
| # Compression | ||
| yauzl | ||
|
|
||
| # TypeScript (recommended local + global) | ||
| typescript | ||
| ts-node | ||
| xlsx | ||
| exceljs | ||
| luxon | ||
| zod | ||
| @types/node | ||
|
|
||
| # Web frameworks | ||
| express | ||
| handlebars | ||
| cheerio | ||
| marked | ||
|
|
||
| # UI libraries | ||
| jquery | ||
| jquery-ui-dist | ||
| three | ||
| p5 |
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 |
|---|---|---|
| @@ -1,19 +1,18 @@ | ||
| # Math, science, and analysis packages | ||
|
|
||
| scipy>=1.11 | ||
| scikit-learn>=1.3 | ||
| statsmodels>=0.14 | ||
| sympy>=1.12 | ||
| mpmath>=1.3 | ||
| numba>=0.58 | ||
| llvmlite>=0.41 | ||
| numexpr>=2.8 | ||
| networkx>=3.2 | ||
| lifelines>=0.27 | ||
| autograd>=1.6 | ||
| autograd-gamma>=0.5 | ||
| formulaic>=1.0 | ||
| patsy>=0.5 | ||
| kiwisolver>=1.4 | ||
| joblib>=1.3 | ||
| threadpoolctl>=3.2 | ||
| # Math, science, and analysis | ||
| autograd-gamma>=0.5.0 | ||
| autograd>=1.7.0 | ||
| formulaic>=1.0.2 | ||
| joblib>=1.4.2 | ||
| kiwisolver>=1.4.7 | ||
| lifelines>=0.30.0 | ||
| llvmlite>=0.44.0 | ||
| mpmath>=1.3.0 | ||
| networkx>=3.4.2 | ||
| numba>=0.61.0 | ||
| numexpr>=2.10.2 | ||
| patsy>=1.0.1 | ||
| scikit-learn>=1.7.2 | ||
| scipy>=1.16.1 | ||
| statsmodels>=0.14.4 | ||
| sympy>=1.13.3 | ||
| threadpoolctl>=3.5.0 |
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 |
|---|---|---|
| @@ -1,19 +1,17 @@ | ||
| # Core data processing packages | ||
| # These are the most stable and form the foundation | ||
|
|
||
| cloudpickle>=3.0 | ||
| lz4>=4.3.0 | ||
| numpy>=1.24 | ||
| pandas>=2.0 | ||
| openpyxl>=3.1 | ||
| xlrd>=2.0 | ||
| XlsxWriter>=3.1 | ||
| pyarrow>=14.0 | ||
| tabulate>=0.9 | ||
| six>=1.16 | ||
| packaging>=23.0 | ||
| python-dateutil>=2.8 | ||
| pytz>=2024.1 | ||
| tzdata>=2024.1 | ||
| pendulum>=3.0 | ||
| pydantic>=2.5 | ||
| # Core data processing | ||
| cloudpickle>=3.1.0 | ||
| lz4>=4.3.3 | ||
| numpy>=2.2.1 | ||
| pandas>=3.0.0 | ||
| openpyxl>=3.1.5 | ||
| xlrd>=2.0.1 | ||
| XlsxWriter>=3.2.0 | ||
| pyarrow>=18.1.0 | ||
| tabulate>=0.9.0 | ||
| six>=1.17.0 | ||
| packaging>=24.2 | ||
gafda marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| python-dateutil>=2.9.0 | ||
| pytz>=2025.1 | ||
| tzdata>=2025.2 | ||
| pendulum>=3.0.0 | ||
| pydantic>=2.10.6 | ||
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.