anon4 commited on
Commit
19c7b22
·
verified ·
1 Parent(s): 697e9a8

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -0
Dockerfile ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:18
2
+
3
+ # Create app directory
4
+ WORKDIR /usr/src/app
5
+
6
+ RUN wget https://huggingface.co/spaces/anon4/hello-world/raw/main/app.js -O ./app.js
7
+ RUN npm install express
8
+
9
+ EXPOSE 3000
10
+ CMD [ "node", "./app.js" ]