How to dockerize a custom connector for deployment...
# replication-troubleshooting
d
How to dockerize a custom connector for deployment into Airbyte
s
You need to run a docker build command from the connector module directory. Something like
docker build . -t airbyte/<connector-name>:<tag>
https://docs.airbyte.com/connector-development/tutorials/building-a-python-source
👍 1
d
Thanks, @Sunny Hashmi (Airbyte)