Skip to content
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

Allow setting default and individual SU budgets for project members #437

Merged
merged 3 commits into from
Mar 18, 2024

Refactor charge calculation and enforce project budgets

c42ea2f
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

Allow setting default and individual SU budgets for project members #437

Refactor charge calculation and enforce project budgets
c42ea2f
Select commit
Loading
Failed to load commit list.
GitHub Actions / hadolint succeeded Mar 18, 2024 in 0s

reviewdog [hadolint] report

reported by reviewdog 🐶

Findings (0)
Filtered Findings (5)

Dockerfile|20 col 1| Pin versions in apt get install. Instead of apt-get install <package> use apt-get install <package>=<version>
Dockerfile|43 col 1| Pin versions in npm. Instead of npm install <package> use npm install <package>@<version>
Dockerfile|49 col 1| Avoid use of cache directory with pip. Use pip install --no-cache-dir <package>
Dockerfile|49 col 1| Pin versions in pip. Instead of pip install <package> use pip install <package>==<version> or pip install --requirement <requirements file>
Dockerfile|57 col 1| Multiple consecutive RUN instructions. Consider consolidation.