mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-08 04:04:42 +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"]
|