KBYKB commited on
Commit
cd10292
·
verified ·
1 Parent(s): a3301be

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM node:21
2
+ WORKDIR /usr/src/app
3
+ COPY package*.json ./
4
+
5
+ RUN npm install
6
+ COPY . .
7
+ CMD [ "node", "index.js" ]