Has anyone run into a situation where doing `pants...
# general
p
Has anyone run into a situation where doing
pants run docker/target
results in different execution to packaging the image and then doing
docker run <tag>
? Somehow when I do pants run my service starts properly, but when I package and run it does not
I think the answer is that pants starts an interactive terminal and that is what is making things act different
a
does
pants run
use the same image ID as
docker run
?
p
yeah; I have also verified I get the different behaviour when passing -it to the docker run command with the same image