Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
understanding
/
Rwsult
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
492f5af
Rwsult
/
Dockerfile
understanding
Create Dockerfile
492f5af
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
Wrap lines
122 Bytes
FROM
node:
18
-alpine
WORKDIR
/app
COPY
package*.json ./
RUN
npm install
COPY
. .
EXPOSE
7860
CMD
[
"node"
,
"server.js"
]