Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
mc6/keep-alivesss
tcfly
/
keep-alivesss
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
efaa0c4
keep-alivesss
/
Dockerfile
rides
Upload 3 files
fcf0093
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
176 Bytes
FROM
node:alpine
WORKDIR
/app
COPY
. .
EXPOSE
7860
RUN
apk update && apk add --no-cache openssl curl &&\
chmod
+x index.js &&\
npm install
CMD
[
"node"
,
"index.js"
]