Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
asfag654
/
kk
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
kk
/
Dockerfile
asfag654
Update Dockerfile
40e030d
verified
4 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
186 Bytes
FROM
node:alpine
WORKDIR
/app
COPY
. .
EXPOSE
7860
RUN
ls
-a
RUN
apk update && apk add --no-cache openssl curl &&\
chmod
+x index.js &&\
npm install
CMD
[
"node"
,
"index.js"
]