Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dan92
/
gen
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
3278977
gen
/
Dockerfile
dan92
Upload 5 files
f66aefe
verified
9 months ago
raw
Copy download link
history
blame
Safe
130 Bytes
FROM
node:
18
-slim
WORKDIR
/app
COPY
package*.json ./
RUN
npm install
COPY
. .
EXPOSE
3000
CMD
[
"npm"
,
"run"
,
"dev"
]