Hi! I am trying to containerize meltano using dock...
# troubleshooting
n
Hi! I am trying to containerize meltano using docker, but when I do
docker build --tag meltano-test:dev .
the custom taps I have in the /extract directory fail to install. Is there any way to use custom taps and targets without using a git url?
I can use them fine with
meltano elt
, the problem is only when trying to use docker
d
@nil_serra You’ll want to modify your Dockerfile to make sure the
extract
directory is copied into the image before
meltano install
runs
n
Thanks!