first commit

This commit is contained in:
2022-05-15 13:55:11 +02:00
parent 51dc52e5f2
commit b5e324d9d9
7 changed files with 86 additions and 0 deletions

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
FROM alpine:latest
#
ARG PUID=1000
ARG PGID=1000
#
RUN set -xe \
&& addgroup -g ${PGID} -S mosquitto \
&& adduser -u ${PUID} -G mosquitto -h /mosquitto/ -D mosquitto \
&& apk add --no-cache --purge -uU mosquitto mosquitto-libs mosquitto-clients
WORKDIR /workspace
COPY root/defaults/temp2mqtt /workspace
CMD [ "sh", "./temp2mqtt" ]