Hey everyone, I am going through the docker tutori...
# getting-started
k
Hey everyone, I am going through the docker tutorial and I have some local taps in the .. folder in relation to the meltano project. I am getting the following error:
#11 103.1 ERROR: Invalid requirement: '../tap-postgres'
#11 103.1 Hint: It looks like a path. File ‘../tap-postgres’ does not exist. I see the Dockerfile does COPY . . Whats the recommended way to copy the local packages, set them up as submodules under the meltano project folder? Or is there some WORKDIR magic you can do in docker? make workdir /project/meltano and then copy stuff into ..? Do you want to make that default config for Dockerfile?
d
@keith_siilats I would either house the local packages inside the Meltano project dir (as submodules or plain dirs), or move your packages into (private) Git repos and reference them that way
k
some people are using docker volumes to mount stuff