Files
smarthome/Dockerfile
2024-03-03 23:12:38 +03:00

14 lines
186 B
Docker

FROM node:21.5.0
RUN mkdir /smarthome
WORKDIR /smarthome
RUN npm install -g nodemon
COPY package.json /smarthome
RUN npm install
COPY . /smarthome
EXPOSE 9095
CMD ["nodemon", "app"]