Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Lowtone
/
test
like
0
No application file
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
098c9fc
test
/
Dockerfile
MISASI
Create Dockerfile
098c9fc
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
122 Bytes
FROM
node:
20.11
.
1
WORKDIR
/src/
COPY
package*.json ./
RUN
npm install
COPY
. .
EXPOSE
5001
CMD
[
"node"
,
"server.js"
]