xiaomi_mi_scale/Dockerfile

18 lines
439 B
Docker
Raw Normal View History

2020-05-27 22:12:33 +00:00
FROM python:3.8-slim
2020-07-08 10:31:36 +00:00
LABEL io.hass.version="0.1.7" io.hass.type="addon" io.hass.arch="armhf|aarch64|i386|amd64"
WORKDIR /opt/miscale
COPY src /opt/miscale
2020-05-27 22:12:33 +00:00
RUN apt-get update && apt-get install -y \
bluez \
python-pip \
libglib2.0-dev && \
rm -rf /var/lib/apt/lists/*
RUN pip install -r requirements.txt
2020-05-27 22:12:33 +00:00
# Copy in docker scripts to root of container...
COPY dockerscripts/ /
ENTRYPOINT ["/entrypoint.sh"]
2020-05-27 22:12:33 +00:00
CMD ["/cmd.sh"]