mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-19 06:04:21 +01:00
* Update snips to latest version * Update config.json * Update build.json * Update Dockerfile * Update Dockerfile
13 lines
201 B
Docker
13 lines
201 B
Docker
ARG BUILD_FROM
|
|
ARG BUILD_VERSION
|
|
FROM ${BUILD_FROM}-${BUILD_VERSION}
|
|
|
|
# Copy data
|
|
COPY run.sh /
|
|
COPY mosquitto.conf /etc/
|
|
COPY asoundrc /root/.asoundrc
|
|
|
|
RUN chmod a+x /run.sh
|
|
|
|
ENTRYPOINT [ "/run.sh" ]
|