mirror of
https://github.com/mtan93/homeassistant-addons.git
synced 2026-03-08 05:21:51 +00:00
26 lines
647 B
Docker
26 lines
647 B
Docker
ARG BUILD_FROM
|
|
FROM $BUILD_FROM
|
|
|
|
WORKDIR /data
|
|
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
RUN apk add --no-cache openjdk8 wget nginx
|
|
|
|
COPY rootfs /
|
|
|
|
# Corrects permissions for s6 v3
|
|
RUN if [ -d /etc/cont-init.d ]; then chmod -R 755 /etc/cont-init.d; fi && \
|
|
if [ -d /etc/services.d ]; then chmod -R 755 /etc/services.d; fi && \
|
|
if [ -f /entrypoint.sh ]; then chmod 755 /entrypoint.sh; fi
|
|
|
|
ADD https://blueforcer.de/awtrix/stable/awtrix.jar /stable.jar
|
|
|
|
# Labels
|
|
LABEL \
|
|
io.hass.name="Awtrix_host" \
|
|
io.hass.description="Server for the awtrix-8x32 RGB display." \
|
|
io.hass.type="addon" \
|
|
io.hass.version=${BUILD_VERSION}
|
|
|