Files
Joshua Schnabel 4d75f8cd2b Update Dockerfile
2020-04-23 18:41:36 +02:00

17 lines
357 B
Docker

FROM nginx:alpine
WORKDIR /var/www/
RUN apk add --update curl \
&& 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 hivemq-mqtt-web-client \
&& rm master.zip
ADD nginx.conf /etc/nginx/nginx.conf
EXPOSE 80
CMD ["nginx"]