This commit is contained in:
lolouk44 2020-11-26 15:43:01 +00:00
parent 589d4ceafc
commit 441084f574
2 changed files with 3 additions and 2 deletions

View file

@ -28,7 +28,7 @@ jobs:
run: |
docker buildx build --no-cache --push \
--tag lolouk44/xiaomi-mi-scale:${{ github.event.release.tag_name }} \
--tag lolouk44/xiaomi-mi-scale:latest \
--platform linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8 .
- name: Image digest

View file

@ -3,7 +3,8 @@ 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 \
build-essential \
bluez \
python-pip \
libglib2.0-dev && \