Initial import into git
This commit is contained in:
20
docker/Dockerfile
Normal file
20
docker/Dockerfile
Normal file
@@ -0,0 +1,20 @@
|
||||
FROM alpine:latest
|
||||
RUN apk --no-cache add \
|
||||
avahi \
|
||||
avahi-tools \
|
||||
dbus \
|
||||
envsubst \
|
||||
s6-overlay \
|
||||
socat
|
||||
|
||||
COPY ./services.d/ /etc/services.d/
|
||||
COPY wait-for-dbus /usr/local/bin/
|
||||
COPY avahi-daemon.conf.template /etc/avahi/
|
||||
COPY entrypoint-dlitz.sh /
|
||||
|
||||
ENTRYPOINT ["/entrypoint-dlitz.sh"]
|
||||
ENV AVAHI_INTERFACES=dummy0
|
||||
|
||||
#CMD ["/usr/sbin/avahi-daemon"]
|
||||
CMD ["/bin/sh", "-c", "wait-for-dbus ; exec /usr/sbin/avahi-daemon"]
|
||||
|
||||
Reference in New Issue
Block a user