first commit

This commit is contained in:
2024-03-03 23:12:38 +03:00
commit a5b7d0edfe
11 changed files with 355 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
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"]