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

Artifact stats detail page confusion fix #424

Merged
merged 3 commits into from
Oct 2, 2023

remove artifact stats section header as users expect the stats to be …

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

Artifact stats detail page confusion fix #424

remove artifact stats section header as users expect the stats to be …
f626311
Select commit
Loading
Failed to load commit list.
GitHub Actions / hadolint succeeded Oct 2, 2023 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.