mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-05-23 09:11:50 +02:00
Initial version of the automatic addon updater
This commit is contained in:
16
addons_updater/Dockerfile
Normal file
16
addons_updater/Dockerfile
Normal file
@@ -0,0 +1,16 @@
|
||||
ARG BUILD_FROM
|
||||
FROM $BUILD_FROM
|
||||
|
||||
VOLUME [ "/data" ]
|
||||
|
||||
#Install last version https://github.com/dvershinin/lastversion
|
||||
RUN \
|
||||
apk add --no-cache git \
|
||||
&& pip install --upgrade pip \
|
||||
&& pip install lastversion
|
||||
|
||||
# Copy root filesystem
|
||||
COPY rootfs /
|
||||
|
||||
# Set shell
|
||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
Reference in New Issue
Block a user