Files
addons/check_config/Dockerfile
Censored3 d7b34cfdc1 check_config: bugfixes (#388)
* do not copy config to /tmp on boot - Closes home-assistant/hassio-addons#374

* check_config: version bump

* check_config: add OS deps to satisfy cffi

* check_config: .. and build-base

* Create build.json

* Update Dockerfile

* Update run.sh
2018-08-29 00:20:36 +02:00

13 lines
215 B
Docker

ARG BUILD_FROM
FROM $BUILD_FROM
# Setup base
RUN apk add --no-cache jq gcc libffi-dev libressl-dev \
&& pip3 install --no-cache --upgrade pip
# Copy data
COPY run.sh /
RUN chmod a+x /run.sh
CMD [ "/run.sh" ]