Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
severo
/
followgraph
like
33
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
refs/pr/1
followgraph
/
Dockerfile
severo
HF Staff
fix docker
8c1dca2
almost 2 years ago
raw
Copy download link
history
blame
Safe
171 Bytes
FROM
node:
19
WORKDIR
/usr/src/app
COPY
package.json package-lock.json ./
RUN
npm ci
RUN
npm rebuild
COPY
. ./
RUN
npm run build
EXPOSE
3000
CMD
[
"npm"
,
"run"
,
"start"
]