Initial dockerfile.

This commit is contained in:
Mike Purvis 2014-11-12 00:16:52 -05:00
commit 5c60e1024e
1 changed files with 9 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM ubuntu
MAINTAINER Mike Purvis
# Instructions from: http://www.aptly.info/download/
RUN echo "deb http://repo.aptly.info/ squeeze main" > /etc/apt/sources.list.d/aptly.list; \
gpg --keyserver keys.gnupg.net --recv-keys 2A194991; \
gpg -a --export 2A194991 | apt-key add -; \
apt-get update; \
apt-get install aptly -y