The Dockerfile `render.pre-release.Dockerfile` has been added to the repository, which sets the base image to `langflowai/langflow:1.0-alpha`. Additionally, the `render.yaml` file has been modified to use the new Dockerfile path `./docker/render.pre-release.Dockerfile` for the `langflow` web service. This change ensures that the pre-release version of the application is deployed correctly. Note: The commit message has been generated based on the provided code changes and recent commits.
16 lines
456 B
YAML
16 lines
456 B
YAML
services:
|
|
# A Docker web service
|
|
- type: web
|
|
name: langflow
|
|
runtime: docker
|
|
dockerfilePath: ./docker/render.pre-release.Dockerfile
|
|
repo: https://github.com/langflow-ai/langflow
|
|
branch: dev
|
|
healthCheckPath: /health
|
|
autoDeploy: false
|
|
envVars:
|
|
- key: LANGFLOW_DATABASE_URL
|
|
value: sqlite:////home/user/.cache/langflow/langflow.db
|
|
disk:
|
|
name: langflow-data
|
|
mountPath: /home/user/.cache/langflow
|