Skip to content

Commit ab0912d

Browse files
committed
ci: fix hadolint — suppress DL3008, add --no-install-recommends to apt-get install -f
1 parent 7dd8472 commit ab0912d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lms/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ FROM ubuntu:22.04
33
ENV DEBIAN_FRONTEND=noninteractive
44

55
# Fetch pre-built LMS 2550 deb (Ubuntu 22.04) and let apt resolve all deps
6+
# hadolint ignore=DL3008
67
RUN apt-get update && apt-get install -y --no-install-recommends curl ca-certificates dbus \
78
&& curl -fsSL \
89
https://github.com/rgl/lms-binaries/releases/download/v0.0.20251226/lms-2550.0.0-ubuntu-22.04.deb \
910
-o /tmp/lms.deb \
10-
&& dpkg -i /tmp/lms.deb 2>/dev/null; apt-get install -f -y \
11+
&& dpkg -i /tmp/lms.deb 2>/dev/null; apt-get install -f -y --no-install-recommends \
1112
&& rm /tmp/lms.deb \
1213
&& rm -rf /var/lib/apt/lists/*
1314

0 commit comments

Comments
 (0)