Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Junranl
/
rag-full
like
0
No application file
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
rag-full
/
ui
/
Dockerfile
Junranl
Upload folder using huggingface_hub
6e1a53e
verified
7 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
126 Bytes
FROM
node:
21
-slim
WORKDIR
/app
COPY
package.json yarn.lock ./
RUN
yarn install
COPY
. .
EXPOSE
3000
CMD
[
"yarn"
,
"dev"
]