Initial dockerfile.
This commit is contained in:
commit
5c60e1024e
|
@ -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
|
Loading…
Reference in New Issue