Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dcrey7
/
test
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
test
/
Dockerfile
dcrey7
Update Dockerfile
fbf9270
verified
14 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
193 Bytes
FROM
oven/bun:
1
WORKDIR
/app
COPY
package.json schema.prisma ./
RUN
bun install
RUN
bunx prisma generate
COPY
. .
ENV
DATABASE_URL=${DATABASE_URL}
EXPOSE
7860
CMD
[
"bun"
,
"run"
,
"src/index.ts"
]