Closed edmorley closed 7 years ago
Currently the app Docker image is based on debian:jessie and then manually installs Python 3, which for Jessie is the slightly old Python 3.4.2.
debian:jessie
If instead the Dockerfile were changed to use the official Python image:
For a list of image tags, see: https://hub.docker.com/r/library/python/
I would recommend the slim variants, for example python:3.4-slim (for parity with the current Dockerfile, later you could switch to 3.5-slim or 3.6-slim).
python:3.4-slim
3.5-slim
3.6-slim
Done now, thanks for the suggestion!
You're welcome :-)
Currently the app Docker image is based on
debian:jessie
and then manually installs Python 3, which for Jessie is the slightly old Python 3.4.2.If instead the Dockerfile were changed to use the official Python image:
For a list of image tags, see: https://hub.docker.com/r/library/python/
I would recommend the slim variants, for example
python:3.4-slim
(for parity with the current Dockerfile, later you could switch to3.5-slim
or3.6-slim
).