Created
November 19, 2014 01:36
-
-
Save cevaris/8fde72bc82b96cc43d46 to your computer and use it in GitHub Desktop.
Dockerfile for installing the latest puppet
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
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