Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dodd869
/
diddy
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
diddy
/
Dockerfile
dodd869
Create Dockerfile
642e0e3
verified
6 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
196 Bytes
FROM
mcr.microsoft.com/playwright:v1.
44.0
-focal
WORKDIR
/app
COPY
package.json ./
RUN
npm install
COPY
server.js ./
ENV
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=
1
EXPOSE
7860
CMD
[
"node"
,
"server.js"
]