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

Add the badge filter to search the DOM instead of making another request #431

Merged
merged 1 commit into from
Nov 13, 2023

Add the badge filter to search the DOM instead of making another request

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

Add the badge filter to search the DOM instead of making another request #431

Add the badge filter to search the DOM instead of making another request
f46c20a
Select commit
Loading
Failed to load commit list.
GitHub Actions / hadolint succeeded Nov 13, 2023 in 1s

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.