Files
addons/ssh/Dockerfile
NotoriousBDG 8ccdb51728 Add mosquitto-clients (#160)
I find that having mosquitto_pub and mosquitto_sub pretty useful to troubleshoot mqtt issues.  Feed free to reject if it doesn't make sense to include.
2017-08-02 11:14:55 +02:00

17 lines
255 B
Docker

FROM %%BASE_IMAGE%%
# 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" ]