mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-12 11:14:57 +02:00
14 lines
236 B
Docker
14 lines
236 B
Docker
#
|
|
# Dockerfile for darkice
|
|
#
|
|
|
|
FROM debian:bullseye
|
|
MAINTAINER EasyPi Software Foundation
|
|
|
|
RUN set -xe \
|
|
&& apt update -y \
|
|
&& apt install -y darkice \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
CMD ["darkice", "-c", "/etc/darkice/darkice.cfg"]
|