iot-v2-rn/server/Dockerfile
2020-10-03 23:22:44 +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" ]