julien-c HF staff commited on
Commit
649bcca
1 Parent(s): cf5db11

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -0
Dockerfile ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ # read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
2
+ # you will also find guides on how best to write your Dockerfile
3
+
4
+ FROM node:19
5
+
6
+ COPY . .
7
+
8
+ RUN npm i
9
+
10
+ CMD ["npx", "ts-node", "server.ts"]