mirror of
https://github.com/aljazceru/addons.git
synced 2026-02-08 06:34:20 +01:00
12 lines
176 B
Docker
12 lines
176 B
Docker
ARG BUILD_FROM
|
|
FROM $BUILD_FROM
|
|
|
|
# Copy data
|
|
COPY run.sh /
|
|
COPY mosquitto.conf /etc/
|
|
COPY assistant.zip /assistant-default.zip
|
|
|
|
RUN chmod a+x /run.sh
|
|
|
|
ENTRYPOINT [ "/run.sh" ]
|