This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Zigbee2Mqtt Philips Hue Dimmer Switch (V2) | |
| description: 'For https://www.zigbee2mqtt.io/devices/929002398602.html' | |
| domain: automation | |
| input: | |
| dimmer_action: | |
| name: Dimmer MQTT topic | |
| description: 'type in your Dimmer MQTT topic (i.e. zigbee2mqtt/Dimmer/action)' | |
| selector: | |
| text: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM node:14-alpine as builder | |
| WORKDIR /app | |
| COPY package*.json .npmrc ./ | |
| # installing deps is separate from copying source to reuse image with deps if none changed | |
| RUN npm ci | |
| COPY tsconfig*.json ./ |