Update Dockerfile

This commit is contained in:
Joshua Schnabel
2020-04-23 18:19:25 +02:00
committed by GitHub
parent e4dc297c0a
commit 8bab2584f1

View File

@ -2,14 +2,14 @@ FROM nginx:alpine
WORKDIR /var/www/
RUN apk add --update \
RUN apk add --update nginx \
&& 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\
&& mv hivemq-mqtt-web-client-master hivemq-mqtt-web-client \
&& rm master.zip
ADD setup /
ADD nginx.conf /etc/nginx/nginx.conf
EXPOSE 80