1 parent 7dd8472 commit ab0912dCopy full SHA for ab0912d
1 file changed
lms/Dockerfile
@@ -3,11 +3,12 @@ FROM ubuntu:22.04
3
ENV DEBIAN_FRONTEND=noninteractive
4
5
# Fetch pre-built LMS 2550 deb (Ubuntu 22.04) and let apt resolve all deps
6
+# hadolint ignore=DL3008
7
RUN apt-get update && apt-get install -y --no-install-recommends curl ca-certificates dbus \
8
&& curl -fsSL \
9
https://github.com/rgl/lms-binaries/releases/download/v0.0.20251226/lms-2550.0.0-ubuntu-22.04.deb \
10
-o /tmp/lms.deb \
- && 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 \
12
&& rm /tmp/lms.deb \
13
&& rm -rf /var/lib/apt/lists/*
14
0 commit comments