2020-05-27 22:12:33 +00:00
|
|
|
FROM python:3.8-slim
|
2020-11-23 19:47:03 +00:00
|
|
|
|
2019-09-02 04:12:33 +00:00
|
|
|
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/*
|
2019-09-02 04:12:33 +00:00
|
|
|
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
|
2020-05-27 22:12:33 +00:00
|
|
|
# Copy in docker scripts to root of container...
|
2019-09-02 04:12:33 +00:00
|
|
|
COPY dockerscripts/ /
|
|
|
|
|
2020-11-26 09:47:10 +00:00
|
|
|
RUN chmod +x /entrypoint.sh && chmod +x /cmd.sh
|
2019-09-02 04:12:33 +00:00
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
2020-05-27 22:12:33 +00:00
|
|
|
CMD ["/cmd.sh"]
|