Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
massy-eyeliner
/
storm
like
0
Runtime error
App
Files
Files
Community
cf44755
storm
/
Dockerfile
massy-eyeliner
Create Dockerfile
cf44755
over 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"
]