first commit
This commit is contained in:
14
Dockerfile
Normal file
14
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user