parent
4a5cfe55ac
commit
83c395dcce
@ -0,0 +1,2 @@
|
||||
node_modules
|
||||
npm-debug.log
|
@ -0,0 +1,17 @@
|
||||
FROM node:16
|
||||
|
||||
# Create app directory
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
# Install app dependencies
|
||||
# A wildcard is used to ensure both package.json AND package-lock.json are copied
|
||||
# where available (npm@5+)
|
||||
COPY package*.json ./
|
||||
|
||||
RUN npm install
|
||||
|
||||
COPY . .
|
||||
|
||||
EXPOSE 9911
|
||||
|
||||
CMD [ "node", "raumstatus.js" ]
|
Loading…
Reference in new issue