This commit is contained in:
lolouk44 2020-11-26 09:47:10 +00:00
parent 4bf56d8085
commit 9b6519f299
4 changed files with 14 additions and 7 deletions

View file

@ -3,7 +3,7 @@ FROM python:3.8-slim
WORKDIR /opt/miscale
COPY src /opt/miscale
RUN apt-get update && apt-get install -y \
RUN apt-get update && apt-get install no-install-recommends -y \
bluez \
python-pip \
libglib2.0-dev && \
@ -14,5 +14,6 @@ RUN pip install -r requirements.txt
# Copy in docker scripts to root of container...
COPY dockerscripts/ /
RUN chmod +x /entrypoint.sh && chmod +x /cmd.sh
ENTRYPOINT ["/entrypoint.sh"]
CMD ["/cmd.sh"]