Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
zwv9
/
kristiel
like
0
Sleeping
App
Files
Files
Community
da02f8b
kristiel
/
Dockerfile
zwv9
Update Dockerfile
da02f8b
11 months ago
raw
Copy download link
history
blame
Safe
215 Bytes
FROM
oven/bun:
1
WORKDIR
/code
RUN
apt install -y git
RUN
git
clone
https://github.com/0zl/phr.git .
RUN
bash scripts/dependencies_no_browser.sh
RUN
bun install
COPY
. .
EXPOSE
7860
CMD
[
"bun"
,
"run"
,
"main.ts"
]