aboutsummaryrefslogtreecommitdiff
path: root/mosquitto/Dockerfile
blob: 3ed038bb5bcc7aa99da4a5e824067ec2664ab76f (plain)
1
2
3
4
5
6
7
8
9
FROM alpine:edge
LABEL maintainer="Mike Crute <mike@crute.us>"

RUN set -euxo pipefail; \
    apk add --no-cache \
        mosquitto \
    ;

CMD [ "/usr/sbin/mosquitto", "-v" ]