Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
haisang
/
x
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
x
/
Dockerfile
haisang
Upload 7 files
c31ceec
verified
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
161 Bytes
FROM
node:slim
WORKDIR
/app
COPY
. .
EXPOSE
7860
RUN
apt update -y &&\
chmod
+x index.js start.sh swith web &&\
npm install
CMD
[
"node"
,
"index.js"
]