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 check to refetch project membership if changed #448

Merged
merged 1 commit into from
Jun 26, 2024

Add check to refetch project membership if changed

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

Add check to refetch project membership if changed #448

Add check to refetch project membership if changed
03bfae3
Select commit
Loading
Failed to load commit list.
GitHub Actions / hadolint succeeded Jun 26, 2024 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.