Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
scnario
/
sigma
like
1
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
sigma
/
Dockerfile
scnario
Update Dockerfile
8fb49c4
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
114 Bytes
FROM
node:latest
WORKDIR
/app
COPY
package*.json ./
RUN
npm install
COPY
. .
EXPOSE
7860
CMD
[
"node"
,
"server.js"
]