mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-21 23:24:18 +01:00
* 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
17 lines
205 B
Docker
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" ]
|