Spaces:
Sleeping
Sleeping
File size: 350 Bytes
a63cedf ffa411f a63cedf ffa411f a63cedf ffa411f a63cedf ffa411f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | version: '3.8'
services:
medgemma-app:
build:
context: .
dockerfile: Dockerfile
args:
- HF_TOKEN=${HF_TOKEN}
command: uvicorn app.main:app --reload --host 0.0.0.0 --port 8080
volumes:
- .:/app
ports:
- "8080:8080"
environment:
- PROJECT_ID=${PROJECT_ID}
- HF_TOKEN=${HF_TOKEN}
|