mirror of
https://github.com/Sthopeless/74757961.git
synced 2025-04-04 15:33:38 +02:00
25 lines
413 B
Docker
25 lines
413 B
Docker
FROM alpine:3.14
|
|
|
|
LABEL Maintainer="Sthope" \
|
|
Description="Unlock Zigbee Tuya Doorlocks with API" \
|
|
version="0.1"
|
|
|
|
RUN apk --no-cache add \
|
|
nano \
|
|
mosquitto \
|
|
mosquitto-clients \
|
|
python3-dev \
|
|
build-base \
|
|
py3-pip
|
|
|
|
RUN pip3 install \
|
|
tuya-iot-py-sdk \
|
|
paho-mqtt \
|
|
pycryptodome
|
|
|
|
RUN mkdir -p /home/tuya_doorlock
|
|
|
|
ADD tuya_doorlock/ /home/tuya_doorlock/
|
|
|
|
ENTRYPOINT ["tail", "-f", "/dev/null"]
|