Yukuii commited on
Commit
583ddcd
·
verified ·
1 Parent(s): 9dcd8bf

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -0
Dockerfile ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM nikolaik/python-nodejs:python3.14-nodejs22
2
+
3
+ WORKDIR /tmp
4
+
5
+ COPY index.js /tmp/index.js
6
+ COPY package.json /tmp/package.json
7
+
8
+ COPY index.html /tmp/index.html
9
+
10
+ CMD npm install && node index.js