Skip to content

Instantly share code, notes, and snippets.

@cevaris
Created November 19, 2014 01:36
Show Gist options
  • Save cevaris/8fde72bc82b96cc43d46 to your computer and use it in GitHub Desktop.
Save cevaris/8fde72bc82b96cc43d46 to your computer and use it in GitHub Desktop.
Dockerfile for installing the latest puppet
FROM ubuntu:12.04
MAINTAINER Adam Cardenas "[email protected]"
# Prepwork
RUN apt-get -y -q update \
&& apt-get -y -q install wget curl
# Install Puppet
RUN wget -N https://apt.puppetlabs.com/puppetlabs-release-precise.deb > puppetlabs-release-precise.deb \
&& dpkg -i puppetlabs-release-precise.deb
RUN apt-get -y -q update && apt-get -y -q install puppet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment