Update
This commit is contained in:
parent
bcc878396b
commit
9b4af8671b
2
.dockerignore
Normal file
2
.dockerignore
Normal file
@ -0,0 +1,2 @@
|
||||
node_modules
|
||||
npm-debug.log
|
||||
8
Dockerfile
Normal file
8
Dockerfile
Normal file
@ -0,0 +1,8 @@
|
||||
FROM node:latest
|
||||
WORKDIR /usr/src/app
|
||||
COPY . .
|
||||
RUN npm install
|
||||
EXPOSE 5000
|
||||
RUN apt update
|
||||
RUN apt install htop
|
||||
CMD [ "node", "server.js" ]
|
||||
Loading…
Reference in New Issue
Block a user