Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
MUHARDOFF
/
open-reverse-proxy
like
0
Runtime error
App
Files
Files
Community
6a16c7e
open-reverse-proxy
/
Dockerfile
MUHARDOFF
Create Dockerfile
77ea696
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"
]