mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-06 14:54:20 +01:00
* new options + version pump * add default options for include_dir * init customize configs * map share RO * Update run.sh * Update Dockerfile
16 lines
193 B
Docker
16 lines
193 B
Docker
FROM %%BASE_IMAGE%%
|
|
|
|
# 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" ]
|