iot-v2-rn/ctrl_server/Dockerfile
2021-10-08 19:46:11 +01:00

9 lines
139 B
Docker

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