julien-c HF Staff commited on
Commit
a99cb19
·
verified ·
1 Parent(s): fd0873a

Dockerfile

Browse files
Files changed (2) hide show
  1. .dockerignore +1 -0
  2. Dockerfile +11 -0
.dockerignore ADDED
@@ -0,0 +1 @@
 
 
1
+ node_modules
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:latest
2
+
3
+ WORKDIR /app
4
+
5
+ COPY . .
6
+
7
+ RUN npm install -g pnpm && pnpm install
8
+
9
+ EXPOSE 7860
10
+
11
+ CMD ["node", "--disable-warning=ExperimentalWarning", "app.ts"]