mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-22 22:36:08 +01:00
* check_config: Rewrite onto Bashio * check_config: Removed extra slash from Dockerfile * check_config: Added README file * check_config: Formatted config.json, changed link * check_config: Bumped version, updated changelog * Update Dockerfile * Update run.sh * Update CHANGELOG.md * check_config: Added Known issues and limitations section to README * check_config: Bumped version to 2.0 * check_config: Bumped version in CHANGELOG * check_config: Remove typo in option name in README
12 lines
202 B
Docker
12 lines
202 B
Docker
ARG BUILD_FROM
|
|
FROM $BUILD_FROM
|
|
|
|
# Add Hass.io wheels repository
|
|
ARG BUILD_ARCH
|
|
ENV WHEELS_LINKS=https://wheels.home-assistant.io/alpine-3.9/${BUILD_ARCH}/
|
|
|
|
# Copy data
|
|
COPY run.sh /
|
|
|
|
CMD [ "/run.sh" ]
|