diff --git a/Dockerfile b/Dockerfile index 8848501..9f1c581 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9-slim +FROM python:3.11.11-slim WORKDIR /app diff --git a/JIT b/JIT new file mode 100644 index 0000000..580e801 --- /dev/null +++ b/JIT @@ -0,0 +1,19 @@ +services: + - type: web + name: jit-backend + env: python + buildCommand: pip install -r requirements.txt + startCommand: gunicorn app:app + envVars: + - key: PYTHON_VERSION + value: 3.11.11 + - key: JWT_SECRET_KEY + generateValue: true + - key: DROPBOX_APP_KEY + value: 2bi422xpd3xd962 + - key: DROPBOX_APP_SECRET + value: j3yx0b41qdvfu86 + - key: DROPBOX_REFRESH_TOKEN + value: RvyL03RE5qAAAAAAAAAAAVMVebvE7jDx8Okd0ploMzr85c6txvCRXpJAt30mxrKF + healthCheckPath: /health + autoDeploy: true Backend/render.yaml