Files
addons/mosquitto/Dockerfile
Tobias Hoff 829fa7f0f6 add websocket listener config (plain and ssl) (#342)
* add websocket listener config (plain and ssl)

* add websocket listener config (plain and ssl)

* fix syntax

* upversion to 2.0

* introduce changelog for v2.0

* Update Dockerfile
2018-07-06 12:19:45 +02:00

17 lines
205 B
Docker

ARG BUILD_FROM
FROM $BUILD_FROM
# Add env
ENV LANG C.UTF-8
# Setup base
RUN apk add --no-cache jq mosquitto
# Copy data
COPY run.sh /
COPY mosquitto.conf /etc/
RUN chmod a+x /run.sh
CMD [ "/run.sh" ]