Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hui4
/
world-x
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
world-x
/
Dockerfile
hui4
Create Dockerfile
810308d
verified
9 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
195 Bytes
FROM
node:latest
# Create app directory
WORKDIR
/usr/src/app
# Install app dependencies
COPY
package*.json ./
RUN
npm install
# Bundle app source
COPY
. .
EXPOSE
7860
CMD
[
"node"
,
"app.js"
]