Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
TwanAPI/test
TwanAPI
/
testjsdj
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
testjsdj
/
Dockerfile
Twan07
Create Dockerfile
6697ec2
verified
23 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
118 Bytes
FROM
node
WORKDIR
/usr/src/app
COPY
package*.json ./
RUN
npm install
COPY
. .
EXPOSE
8080
CMD
[
"npm"
,
"start"
]