This commit is contained in:
Paolo Asperti 2018-12-06 20:04:05 +01:00
parent e4e35da71e
commit a928bd82e6
1 changed files with 11 additions and 12 deletions

View File

@ -3,19 +3,18 @@ FROM $BUILD_FROM
ENV LANG C.UTF-8
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/main" > /etc/apk/repositories
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
RUN apk add -U jq nut curl
RUN mkdir /var/run/nut
RUN chown root:nut /var/run/nut
RUN chmod 770 /var/run/nut
# Copy data for add-on
# Copy scripts for add-on
COPY run.sh /
COPY shutdown.sh /
RUN chmod a+x /run.sh
RUN chmod a+x /shutdown.sh
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 && \
apk add -U jq nut curl && \
mkdir /var/run/nut && \
chown root:nut /var/run/nut && \
chmod 770 /var/run/nut && \
chmod a+x /run.sh && \
chmod a+x /shutdown.sh
CMD [ "/run.sh" ]