13 lines
252 B
Docker
13 lines
252 B
Docker
FROM debian:latest
|
|
|
|
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
|
|
LABEL ImageName="registry.gitlab.com/wolutator/mosquitto-with-auth"
|
|
|
|
RUN \
|
|
apt update && \
|
|
apt install -y libmariadbclient && \
|
|
apt install -y openssl && \
|
|
mv opt /
|
|
|
|
|