Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ardasen
/
proxy
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
proxy
/
Dockerfile
ardasen
Create Dockerfile
26769ae
verified
9 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
152 Bytes
FROM
node:
18
WORKDIR
/app
RUN
npm install express express-http-proxy express-rate-limit request-ip
COPY
. .
EXPOSE
7860
CMD
[
"node"
,
"server.js"
]