Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
gowah44030
/
test1
like
0
Runtime error
App
Files
Files
Community
2b11416
test1
/
Dockerfile
gowah44030
Create Dockerfile
635c591
over 1 year ago
raw
Copy download link
history
blame
Safe
121 Bytes
FROM
node:
18
WORKDIR
/code
COPY
package.json ./code/package.json
RUN
npm install
COPY
. .
CMD
[
"node"
,
"index.js"
]