Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
phamphonga6
/
react-web
Like
2
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
react-web
/
Dockerfile
PhamDinhPhong
ok
e153e09
over 1 year ago
Raw
Download with hf CLI
Copy download link
History
Blame
Contribute
Delete
Safe
202 Bytes
FROM
node:
18
WORKDIR
/app
# Copy file cần thiết
COPY
build/ ./
# Cài đặt serve
RUN
npm install -g serve
# Port ứng dụng
EXPOSE
3000
# Chạy serve
CMD
[
"serve"
,
"-s"
,
"."
,
"-l"
,
"3000"
]