mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-18 13:44:20 +01:00
* configurator: Removed direct access from add-on * configurator: Extended list of default ingored patterns * configurator: Simplified run.sh * configurator: Bump version to 4.0 * configurator: Use the default Ingress port
17 lines
305 B
Docker
17 lines
305 B
Docker
ARG BUILD_FROM
|
|
FROM $BUILD_FROM
|
|
|
|
# Setup base
|
|
ARG CONFIGURATOR_VERSION
|
|
RUN apk add --no-cache \
|
|
git \
|
|
openssh-client \
|
|
&& pip install --no-cache-dir \
|
|
hass-configurator==${CONFIGURATOR_VERSION}
|
|
|
|
# Copy data
|
|
COPY data/configurator.conf /etc/
|
|
COPY data/run.sh /
|
|
|
|
CMD ["/run.sh"]
|