xiaomi_mi_scale/Dockerfile

20 lines
443 B
Docker
Raw Permalink Normal View History

2020-05-27 22:12:33 +00:00
FROM python:3.8-slim
WORKDIR /opt/miscale
COPY src /opt/miscale
2020-11-26 15:43:01 +00:00
RUN apt-get update && apt-get install --no-install-recommends -y \
build-essential \
2020-05-27 22:12:33 +00:00
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/ /
2020-11-26 09:47:10 +00:00
RUN chmod +x /entrypoint.sh && chmod +x /cmd.sh
ENTRYPOINT ["/entrypoint.sh"]
2020-05-27 22:12:33 +00:00
CMD ["/cmd.sh"]