Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
AFlac199
/
openai-reverse-proxy
like
1
Sleeping
App
Files
Files
Community
1
b9daec9
openai-reverse-proxy
/
Dockerfile
AFlac199
Create Dockerfile
b9daec9
about 1 year ago
raw
Copy download link
history
blame
Safe
122 Bytes
FROM
node:
18
WORKDIR
/app
RUN
npm install express express-http-proxy
COPY
. .
EXPOSE
7860
CMD
[
"node"
,
"server.js"
]