mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-04-22 20:27:16 +00:00

* Split add-on store logic * finish data model * Cleanup models * Cleanup imports * split up store addons * More cleanup * Go to stable * Fix layout * Cleanup interface * Fix restore/snapshot * Fix algo * Fix reload task * Fix typing / remove indirect add-on references * Fix version * Fix repository data * Fix addon repo * Fix api check * Fix API return * Fix model * Temp fix available * Fix lint * Fix install * Fix partial restore * Fix store restore * Fix ingress port * Fix API * Fix style
29 lines
587 B
Docker
29 lines
587 B
Docker
ARG BUILD_FROM
|
|
FROM $BUILD_FROM
|
|
|
|
ARG BUILD_ARCH
|
|
|
|
# Install base
|
|
RUN apk add --no-cache \
|
|
openssl \
|
|
libffi \
|
|
musl \
|
|
git \
|
|
socat \
|
|
glib \
|
|
libstdc++ \
|
|
eudev-libs
|
|
|
|
# Install requirements
|
|
COPY requirements.txt /usr/src/
|
|
RUN export MAKEFLAGS="-j$(nproc)" \
|
|
&& pip3 install --no-cache-dir --find-links https://wheels.hass.io/alpine-3.9/${BUILD_ARCH}/ \
|
|
-r /usr/src/requirements.txt \
|
|
&& rm -f /usr/src/requirements.txt
|
|
|
|
# Install HassIO
|
|
COPY . /usr/src/hassio
|
|
RUN pip3 install --no-cache-dir -e /usr/src/hassio
|
|
|
|
CMD [ "python3", "-m", "hassio" ]
|