Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Niansuh
/
PP2API
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
PP2API
/
Dockerfile
Niansuh
Upload 11 files
aff3448
verified
8 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
116 Bytes
FROM
node:
21
WORKDIR
/usr/src/app
COPY
package*.json ./
RUN
npm install
COPY
. .
CMD
[
"node"
,
"index.js"
]