Created
May 8, 2016 16:17
-
-
Save tkeffer/6ba9c52ab1bc8f35bdc73c6b26de6e5a to your computer and use it in GitHub Desktop.
Dockerfile used to test weewx on Jessie, using Python 2.7.9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Dockerfile used to test weewx on Jessie, using Python 2.7.9 | |
| FROM buildpack-deps:jessie | |
| MAINTAINER Tom Keffer <tkeffer@gmail.com> | |
| # | |
| # New entries should be added at the bottom, to make maximal use | |
| # of the Docker cache. | |
| # | |
| # Get the build-essential stuff | |
| RUN apt-get update && \ | |
| apt-get install -y build-essential | |
| # Get the weewx dependencies | |
| RUN apt-get install -y \ | |
| python-cheetah \ | |
| python-configobj \ | |
| python-dev \ | |
| python-imaging \ | |
| python-serial | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment