-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
8 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,18 @@ | ||
FROM python:3.8-alpine | ||
FROM python:3.8-slim | ||
|
||
WORKDIR /opt/miscale | ||
COPY src /opt/miscale | ||
|
||
RUN apk update && \ | ||
apk add --no-cache \ | ||
dcron \ | ||
bash \ | ||
bash-doc \ | ||
bash-completion \ | ||
tar \ | ||
linux-headers \ | ||
gcc \ | ||
make \ | ||
glib-dev \ | ||
alpine-sdk \ | ||
&& rm -rf /var/cache/apk/* | ||
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 | ||
|
||
# RUN mkdir -p /var/log/cron \ | ||
# && mkdir -m 0644 -p /var/spool/cron/crontabs \ | ||
# && touch /var/log/cron/cron.log \ | ||
# && mkdir -m 0644 -p /etc/cron.d && \ | ||
# echo -e "@reboot python3 /opt/miscale/Xiaomi_Scale.py\n" >> /var/spool/cron/crontabs/root | ||
|
||
## Cleanup | ||
RUN apk del alpine-sdk gcc make tar | ||
|
||
# Copy in docker scripts to root of container... (cron won't run unless it's run under bash/ash shell) | ||
# Copy in docker scripts to root of container... | ||
COPY dockerscripts/ / | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] | ||
CMD ["/cmd.sh"] | ||
|
||
# To test, run with the following: | ||
# docker run --rm -it --privileged --net=host -e MISCALE_MAC=0C:95:41:C9:46:43 -e MQTT_HOST=10.16.10.4 mi-scale_mi-scale | ||
CMD ["/cmd.sh"] |