mirror of
https://github.com/aljazceru/addons.git
synced 2026-02-03 12:14:19 +01:00
* updated to latest snips * Updated docker build from args * Update config.json * Update CHANGELOG.md * Update config.json * Update run.sh * Moved assistant fetch to Dockerfile * Corrected Dockerfile * Moved assistant url to build.json * join to new version numbering * Jump back * Update build.json * Update build.json * change order * Update Dockerfile * Update config.json * Added assistant.zip
13 lines
206 B
Docker
13 lines
206 B
Docker
ARG BUILD_FROM
|
|
FROM $BUILD_FROM
|
|
|
|
# Copy data
|
|
COPY run.sh /
|
|
COPY mosquitto.conf /etc/
|
|
COPY asoundrc /root/.asoundrc
|
|
COPY assistant.zip /assistant-default.zip
|
|
|
|
RUN chmod a+x /run.sh
|
|
|
|
ENTRYPOINT [ "/run.sh" ]
|