mozilla / missioncontrol

Real-time monitoring of Firefox release health
Mozilla Public License 2.0
21 stars 18 forks source link

Use the official Python docker image instead of manually installing #129

Closed edmorley closed 7 years ago

edmorley commented 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.

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).

wlach commented 7 years ago

Done now, thanks for the suggestion!

edmorley commented 7 years ago

You're welcome :-)