Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
bardd
/
node-pt
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
25d9342
node-pt
/
Dockerfile
bardd
Update Dockerfile
25d9342
verified
over 1 year ago
raw
Copy download link
history
blame
125 Bytes
FROM
node:
18
WORKDIR
/app
COPY
package*.json ./
RUN
npm ci
COPY
. .
RUN
npm run build
CMD
[
"npm"
,
"run"
,
"start:prod"
]