Files
hyperion.ng-docker/Dockerfile
T
Måns Sivertsson 9fa8f7ac03
Build Docker Image / docker (push) Failing after 1m11s
init
2026-07-04 12:53:11 +02:00

24 lines
612 B
Docker

FROM debian:bookworm
RUN apt-get update && apt-get install -y \
curl \
gnupg
RUN curl -fsSL https://releases.hyperion-project.org/hyperion.pub.key | gpg --dearmor \
-o /usr/share/keyrings/hyperion.pub.gpg
RUN echo "deb [arch=amd64 signed-by=/usr/share/keyrings/hyperion.pub.gpg] https://apt.releases.hyperion-project.org/ bookworm main" \
> /etc/apt/sources.list.d/hyperion.list
RUN apt-get update
RUN apt-get install -y hyperion
RUN apt-get clean
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"]