mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
15 lines
244 B
Docker
15 lines
244 B
Docker
#
|
|
# Dockerfile for ipfm
|
|
#
|
|
|
|
FROM debian:12
|
|
MAINTAINER EasyPi Software Foundation
|
|
|
|
RUN set -xe \
|
|
&& apt update -y \
|
|
&& apt install -y ipfm \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
ENTRYPOINT ["/usr/sbin/ipfm"]
|
|
CMD ["-n", "-c", "/etc/ipfm/ipfm.conf"]
|