Skip to content

Instantly share code, notes, and snippets.

@tkeffer
Created May 8, 2016 16:17
Show Gist options
  • Select an option

  • Save tkeffer/6ba9c52ab1bc8f35bdc73c6b26de6e5a to your computer and use it in GitHub Desktop.

Select an option

Save tkeffer/6ba9c52ab1bc8f35bdc73c6b26de6e5a to your computer and use it in GitHub Desktop.
Dockerfile used to test weewx on Jessie, using Python 2.7.9
# 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