Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
yxmiler/ClaudeService
wrhb123
/
cs
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
cs
/
Dockerfile
yxmiler
Update Dockerfile
db537ae
verified
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
132 Bytes
FROM
node:lts-alpine
WORKDIR
/app
COPY
package*.json ./
RUN
npm install
COPY
. .
ENV
PORT
7860
EXPOSE
7860
CMD
[
"npm"
,
"start"
]