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