mosquitto-with-auth/Dockerfile

14 lines
269 B
Docker
Raw Normal View History

2019-06-11 15:51:39 +00:00
FROM debian:latest
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
LABEL ImageName="registry.gitlab.com/wolutator/mosquitto-with-auth"
RUN \
apt update && \
2019-06-11 15:56:03 +00:00
apt install -y mariadb-client && \
2019-06-11 15:58:33 +00:00
apt install -y openssl
2019-06-11 15:51:39 +00:00
2019-06-11 15:58:33 +00:00
COPY opt/ /opt
COPY etc/ /opt/etc
2019-06-11 15:51:39 +00:00