-
Notifications
You must be signed in to change notification settings - Fork 3
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
Umbrel v1.2.2 #311
base: development
Are you sure you want to change the base?
Umbrel v1.2.2 #311
Conversation
PeterNashaat
commented
Oct 31, 2024
- Updating Umbrel to latest version.
@@ -0,0 +1,92 @@ | |||
FROM --platform=$BUILDPLATFORM debian:bookworm-slim AS base |
Check failure
Code scanning / Trivy
Image user should not be 'root' High
Type: dockerfile
Vulnerability DS002
Severity: HIGH
Message: Specify at least 1 USER command in Dockerfile with non-root user as argument
Link: DS002
RUN apt-get update && \ | ||
apt-get install -y git && \ | ||
rm -rf /var/lib/apt/lists/* |
Check failure
Code scanning / Trivy
'apt-get' missing '--no-install-recommends' High
Type: dockerfile
Vulnerability DS029
Severity: HIGH
Message: '--no-install-recommends' flag is missed: 'apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*'
Link: DS029
@@ -0,0 +1,24 @@ | |||
FROM ubuntu:22.04 |
Check failure
Code scanning / Trivy
Image user should not be 'root' High
Type: dockerfile
Vulnerability DS002
Severity: HIGH
Message: Specify at least 1 USER command in Dockerfile with non-root user as argument
Link: DS002
RUN apt-get update && DEBIAN_FRONTEND=noninteractive\ | ||
apt-get -qq install curl net-tools iputils-ping openssh-server docker.io \ | ||
fswatch jq rsync sudo iproute2 git gettext-base python3 gnupg avahi-daemon avahi-discover libnss-mdns \ | ||
&& rm -rf /var/lib/apt/lists/* |
Check failure
Code scanning / Trivy
'apt-get' missing '-y' to avoid manual input High
Type: dockerfile
Vulnerability DS021
Severity: HIGH
Message: '-y' flag is missed: 'apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -qq install curl net-tools iputils-ping openssh-server docker.io fswatch jq rsync sudo iproute2 git gettext-base python3 gnupg avahi-daemon avahi-discover libnss-mdns && rm -rf /var/lib/apt/lists/*'
Link: DS021
RUN apt-get update && DEBIAN_FRONTEND=noninteractive\ | ||
apt-get -qq install curl net-tools iputils-ping openssh-server docker.io \ | ||
fswatch jq rsync sudo iproute2 git gettext-base python3 gnupg avahi-daemon avahi-discover libnss-mdns \ | ||
&& rm -rf /var/lib/apt/lists/* |
Check failure
Code scanning / Trivy
'apt-get' missing '--no-install-recommends' High
Type: dockerfile
Vulnerability DS029
Severity: HIGH
Message: '--no-install-recommends' flag is missed: 'apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -qq install curl net-tools iputils-ping openssh-server docker.io fswatch jq rsync sudo iproute2 git gettext-base python3 gnupg avahi-daemon avahi-discover libnss-mdns && rm -rf /var/lib/apt/lists/*'
Link: DS029