mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-10 00:34:22 +01:00
* 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
13 lines
215 B
Docker
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" ]
|