Files
addons/snips/Dockerfile
Tod Schmidt 3762e3066b Snips 0.55.2 (#285)
* 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
2018-05-07 12:38:24 +02:00

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" ]