Ruben Jansen
10/01/2021, 1:55 PMheroku.yml
file or other steps needed to get it working at Heroku.
My current heroku.yml
file looks like this:
build:
docker:
web: airbyte-webapp/Dockerfile
airbyte-temporal: airbyte-temporal/Dockerfile
server: airbyte-server/Dockerfile
worker: airbyte-workers/Dockerfile
scheduler: airbyte-scheduler/app/Dockerfile
init: airbyte-config/init/Dockerfile
run:
web: /docker-entrypoint.sh nginx -g 'daemon off;'
airbyte-temporal: /entrypoint.sh /bin/bash -c '/start.sh autosetup'
server: /bin/bash -c bin/${APPLICATION}
worker: /bin/bash -c bin/${APPLICATION}
scheduler: /bin/bash -c bin/${APPLICATION}
init: /bin/sh -c "./scripts/create_mount_directories.sh /local_parent ${HACK_LOCAL_ROOT_PARENT} ${LOCAL_ROOT}"
Heroku App Information
1. Stack: container
2. Framework: No framework detected
3. Slug size: No slug detected
Build failedJared Rhizor (Airbyte)
Ruben Jansen
10/04/2021, 10:55 AM