Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
bardd
/
node-pt
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
58a3b59
node-pt
/
Dockerfile
bardd
latest
fc3e15c
8 months ago
raw
Copy download link
history
blame
Safe
121 Bytes
FROM
node:
18
WORKDIR
/app
COPY
package*.json ./
RUN
npm ci
COPY
. .
RUN
npm install
CMD
[
"npm"
,
"run"
,
"start:dev"
]