mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-18 21:54:20 +01:00
18 lines
267 B
Docker
18 lines
267 B
Docker
ARG BUILD_FROM
|
|
FROM $BUILD_FROM
|
|
|
|
# Add env
|
|
ENV LANG C.UTF-8
|
|
|
|
# Setup base
|
|
RUN apk add --no-cache jq openssh vim curl nano git mosquitto-clients
|
|
|
|
# Copy data
|
|
COPY run.sh /
|
|
COPY motd /etc/
|
|
COPY hassio /usr/bin/
|
|
|
|
RUN chmod a+x /run.sh /usr/bin/hassio
|
|
|
|
CMD [ "/run.sh" ]
|