File size: 336 Bytes
83851f4
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
services:
  - type: web
    name: class10-ml-api
    runtime: docker
    plan: free
    region: oregon
    healthCheckPath: /health
    envVars:
      - key: PYTHONUNBUFFERED
        value: "1"
      - key: PYTHONDONTWRITEBYTECODE
        value: "1"
    dockerCommand: >
      uvicorn app_ml:app --host 0.0.0.0 --port $PORT