hassio-addons/upsmon/Dockerfile

18 lines
585 B
Docker
Raw Normal View History

2021-09-13 10:13:40 +00:00
ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:10.0.2
2018-11-08 20:56:10 +00:00
FROM $BUILD_FROM
ENV LANG C.UTF-8
2021-09-13 10:13:40 +00:00
COPY run.sh shutdown.sh /
2018-12-06 19:04:05 +00:00
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories && \
echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories && \
echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories && \
2020-06-03 19:56:19 +00:00
apk add -U jq nut curl util-linux && \
2018-12-06 19:04:05 +00:00
mkdir /var/run/nut && \
chown root:nut /var/run/nut && \
chmod 770 /var/run/nut && \
2021-09-13 10:13:40 +00:00
chmod a+x /run.sh /shutdown.sh
2018-11-08 20:56:10 +00:00
CMD [ "/run.sh" ]