Spaces:
Sleeping
Sleeping
File size: 349 Bytes
5e0198b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | version: '3.8'
services:
ml-app:
build: .
container_name: ml_model_container
ports:
- "7860:7860" # Expose port 7860 for FastAPI app
volumes:
- .:/app
environment:
- ENV_VAR=production # Add any environment variables if needed
networks:
- app-network
networks:
app-network:
driver: bridge
|