mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-18 13:44:20 +01:00
* added customtts and default assistants * Added ES assistant and customtts updates * Added ES assistant and customtts updates * Added customtts and new assistants * Added customtts and new assistants * Update config.json * Added customtts and new assistants * Added some quotes * Added some quotes * Added some quotes * Remove binaries and install from pkg * Remove binaries and install from pkg * Update Dockerfile * Update config.json * test * updated version * Update config.json * Update config.json * Update Dockerfile * Update config.json * Update customtts.sh * Update CHANGELOG.md * Update run.sh * Update run.sh * Update config.json * Update build.json * Update CHANGELOG.md * Update build.json
17 lines
307 B
Docker
17 lines
307 B
Docker
ARG BUILD_FROM
|
|
FROM $BUILD_FROM
|
|
|
|
# Copy data
|
|
COPY run.sh /
|
|
COPY mosquitto.conf /etc/
|
|
COPY customtts.sh /usr/bin
|
|
COPY assistant_* /
|
|
|
|
RUN chmod a+x /run.sh \
|
|
&& chmod a+x /usr/bin/customtts.sh \
|
|
&& apt-get update \
|
|
&& apt-get install -y mpg123 \
|
|
&& apt-get clean all
|
|
|
|
ENTRYPOINT [ "/run.sh" ]
|