Create Dockerfile

This commit is contained in:
Joshua Schnabel
2020-04-23 18:05:06 +02:00
committed by GitHub
parent b4ff71b790
commit e4dc297c0a

View File

@ -0,0 +1,16 @@
FROM nginx:alpine
WORKDIR /var/www/
RUN apk add --update \
&& rm -rf /var/cache/apk/* \
&& wget https://github.com/hivemq/hivemq-mqtt-web-client/archive/master.zip \
&& unzip master.zip \
&& mv hivemq-mqtt-web-client-master html\
&& rm master.zip
ADD setup /
EXPOSE 80
CMD ["nginx"]