2021-10-21 16:53:32 +02:00
|
|
|
FROM python:3.10
|
2021-07-22 01:35:08 +02:00
|
|
|
|
2021-10-21 16:53:32 +02:00
|
|
|
RUN \
|
|
|
|
apt-get update \
|
|
|
|
&& apt-get install -y --no-install-recommends \
|
|
|
|
protobuf-compiler=3.12.4-1 \
|
2021-10-21 18:59:33 +02:00
|
|
|
libprotobuf-dev=3.12.4-1 \
|
2021-10-21 16:53:32 +02:00
|
|
|
&& rm -rf \
|
|
|
|
/tmp/* \
|
|
|
|
/var/{cache,log}/* \
|
|
|
|
/var/lib/apt/lists/*
|
2021-07-22 01:35:08 +02:00
|
|
|
|
|
|
|
WORKDIR /aioesphomeapi
|
|
|
|
|
|
|
|
COPY requirements_test.txt ./
|
|
|
|
|
|
|
|
RUN pip3 install -r requirements_test.txt
|
|
|
|
|
|
|
|
CMD ["script/gen-protoc"]
|
|
|
|
|
|
|
|
LABEL \
|
|
|
|
org.opencontainers.image.title="aioesphomeapi protobuf generator" \
|
|
|
|
org.opencontainers.image.description="An image to help with ESPHomes aioesphomeapi protobuf generation" \
|
|
|
|
org.opencontainers.image.vendor="ESPHome" \
|
|
|
|
org.opencontainers.image.licenses="MIT" \
|
|
|
|
org.opencontainers.image.url="https://esphome.io" \
|
|
|
|
org.opencontainers.image.source="https://github.com/esphome/aioesphomeapi" \
|
|
|
|
org.opencontainers.image.documentation="https://github.com/esphome/aioesphomeapi/blob/main/README.md"
|