Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hzruo
/
dbei
like
2
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
dbei
/
Dockerfile
hzruo
Create Dockerfile
c82cc38
verified
11 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
156 Bytes
FROM
denoland/deno:alpine
WORKDIR
/app
COPY
. .
RUN
deno cache main.ts
EXPOSE
7860
CMD
[
"run"
,
"--allow-net"
,
"--allow-env"
,
"--allow-read"
,
"main.ts"
]