Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
YUFI-API/ProxyRecGen
YUFI-API
/
ImgRecGen
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
ImgRecGen
/
Dockerfile
Rooni
Update Dockerfile
ea69af8
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
181 Bytes
FROM
node:
18
WORKDIR
/app
COPY
package.json ./
RUN
npm install
RUN
npm install express node-fetch body-parser
RUN
npm install dotenv
COPY
. .
EXPOSE
7860
CMD
[
"node"
,
"server.js"
]