Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
fxlinux
/
d2a
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6c8d31f
d2a
/
Dockerfile
fxlinux
Update Dockerfile
6c8d31f
verified
4 days ago
raw
Copy download link
history
blame
Safe
189 Bytes
FROM
denoland/deno:latest
WORKDIR
/app
COPY
. .
RUN
deno cache --node-modules-dir main.ts
EXPOSE
8000
CMD
[
"deno"
,
"run"
,
"--allow-net"
,
"--allow-env"
,
"--node-modules-dir"
,
"main.ts"
]