Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
rides
/
keep-alive
like
1
Running
App
Files
Files
Community
2
refs/pr/1
keep-alive
/
Dockerfile
rides
Upload 3 files
fcf0093
verified
9 months 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"
]