Hii, is there any way to install a specific image ...
# getting-started
j
Hii, is there any way to install a specific image version when running
meltano add files docker
??
e
Hi @jenn_leon. The dockerfile included in the bundle uses a build arg to define the base image. So you after you pull the files, you can use any meltano image and tag you want when you build your own image:
Copy code
docker build --build-arg MELTANO_IMAGE=meltano/meltnano:latest-python3.9 -t melty .
j
Amazing! thank u!!
e
np!