iot-firebase/IoT-Node/Dockerfile
2020-10-05 10:08:16 +01:00

9 lines
139 B
Docker

FROM node:latest
WORKDIR /usr/src/app
COPY . .
RUN npm install
EXPOSE 5050
RUN apt update
RUN apt install htop
CMD [ "node", "server.js" ]