1
0
mirror of https://github.com/mainflux/mainflux.git synced 2025-05-09 19:29:29 +08:00
Mainflux.mainflux/mqtt/Dockerfile
2018-05-09 14:22:03 +02:00

19 lines
279 B
Docker

###
# Mainflux Dockerfile
###
# Set the base image to Node, onbuild variant: https://registry.hub.docker.com/_/node/
FROM node:boron-alpine
MAINTAINER Mainflux
COPY . .
RUN npm install
EXPOSE 1883
EXPOSE 8880
###
# Run main command with dockerize
###
CMD ["node", "mqtt.js"]