Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
TogetherAI
/
gpt4api
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c8ad578
gpt4api
/
Dockerfile
ngoctuanai
Create Dockerfile
c8ad578
over 1 year ago
raw
Copy download link
history
blame
Safe
157 Bytes
FROM
node:
20
RUN
git
clone
https://github.com/chokiproai/GPT4-API.git
WORKDIR
"GPT4-API"
RUN
npm i
RUN
npm run build
EXPOSE
3000
CMD
[
"npm"
,
"run"
,
"start"
]