Files
hyperion.ng-docker/Dockerfile
T
Måns Sivertsson fbd099b064
Build Docker Image / docker (push) Failing after 13s
updated Dockerfile
2026-07-04 14:31:36 +02:00

20 lines
463 B
Docker

FROM debian:bookworm
ARG VERSION=2.2.0
RUN curl -L -o /tmp/hyperion.deb \
https://github.com/hyperion-project/hyperion.ng/releases/download/${VERSION}/Hyperion-${VERSION}-Linux-amd64.deb
RUN apt-get update
RUN apt-get install -y /tmp/Hyperion*.deb
RUN rm /tmp/Hyperion*.deb
RUN rm -rf /var/lib/apt/lists/*
ENV UID=1000
ENV GID=1000
RUN groupadd -f hyperion
RUN useradd -r -s /bin/bash -g hyperion hyperion
ENTRYPOINT ["/usr/bin/hyperiond", "-u", "/data"]