Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Rfym21
/
DDG2API
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
DDG2API
/
Dockerfile
Rfym21
Update Dockerfile
dd8124b
verified
4 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
118 Bytes
FROM
node:lts-alpine
WORKDIR
/app
COPY
package*.json ./
RUN
npm i
COPY
. .
EXPOSE
8787
CMD
[
"node"
,
"index.js"
]