Skip to content
Advertisement

Trying to download python from a docker container while using GitLab CI

The last stage of my GitLab CI pipeline is a selenium test. I’m trying to automate it through GitLab CI:

JavaScript

I have tried writing this a few different ways– not installing curl, installing everything on a different line… But every time I get this same result:

JavaScript

I understand that it is better to have a docker container pre-packaged with python and all the other stuff we need. But right now I am just trying to get these selenium tests working without messing around with any other stages of the CI pipeline or changing the starting container (node), although we may do that later. So without changing the container I am using, how can I get python and the dependencies installed?

Advertisement

Answer

Stretch does not contain Python 3.6. It only contains Python 3.5. Buster has Python 3.7 available. If you really need Python 3.6 you need to find a repository which has it available.

Advertisement