Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
severo
/
followgraph
like
34
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
cbeb7ff
followgraph
/
Dockerfile
severo
HF staff
fix docker
8c1dca2
6 months 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"
]