This commit is contained in:
Alexandre
2021-06-28 11:51:26 +02:00
parent 8f5cad6da5
commit ceda2fc223
11 changed files with 216 additions and 2 deletions

View File

@@ -7,6 +7,7 @@ RUN apk add --no-cache \
jq \
bash \
bind-tools \
nginx \
&& curl -J -L -o /tmp/bashio.tar.gz \
"https://github.com/hassio-addons/bashio/archive/v0.12.1.tar.gz" \
&& mkdir /tmp/bashio \
@@ -20,9 +21,11 @@ RUN apk add --no-cache \
\
&& mkdir -p -m 777 /config/filebrowser
# Copy root filesystem
COPY rootfs /
VOLUME [ "/data" ]
WORKDIR /
COPY run.sh /
RUN chmod 777 /run.sh
ENTRYPOINT [ "/usr/bin/env" ]
CMD [ "/run.sh" ]