Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
dorkai
/
ChatUIPro
like
1
Paused
App
Files
Files
Community
main
ChatUIPro
/
Dockerfile
dorkai
Add app files
a9df3bb
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
142 Bytes
FROM
--platform=linux/amd64 node:
19
-bullseye-slim
WORKDIR
/app
COPY
. .
RUN
yarn install
RUN
yarn build
EXPOSE
3000
CMD
[
"yarn"
,
"start"
]