15,024
edits
| Line 210: | Line 210: | ||
== Python version on docker images == | == Python version on docker images == | ||
=== docker image: python === | |||
[https://hub.docker.com/_/python/ library/python - Docker Hub] | |||
<pre> | |||
image: python:3.6 | |||
before_script: | |||
# show version of Linux, python and nginx | |||
- cat /etc/*-release | |||
- python -V | |||
- python3 -V | |||
- pip -V | |||
- pip3 -V | |||
- pwd | |||
- pip3 install -r requirements.txt | |||
</pre> | |||
=== docker image: docker === | === docker image: docker === | ||
* [https://hub.docker.com/_/docker/ library/docker - Docker Hub] python v. 2.7.15 {{access | date=2018-08-30}} | * [https://hub.docker.com/_/docker/ library/docker - Docker Hub] python v. 2.7.15 {{access | date=2018-08-30}} | ||