Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Clarzis/pplx
tianlong12
/
perplexity
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Clarzis
commited on
Sep 7, 2024
Commit
b058963
·
verified
·
1 Parent(s):
d436736
Create Dockfile
Browse files
Files changed (1)
hide
show
Dockfile
+6
-0
Dockfile
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
FROM node:21
2
+
WORKDIR /app
3
+
COPY . .
4
+
RUN npm install express proxy-agent socket.io-client uuid
5
+
EXPOSE 8081
6
+
CMD [ "node", "app.js" ]