Skip to content

Instantly share code, notes, and snippets.

@heytrav
Last active August 29, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save heytrav/aec594be5af402e13390 to your computer and use it in GitHub Desktop.
Save heytrav/aec594be5af402e13390 to your computer and use it in GitHub Desktop.
FROM ubuntu:trusty
MAINTAINER Travis Holton <travis@ideegeo.com>
RUN apt-get update && apt-get install -y wget unzip
RUN \
wget https://dl.bintray.com/mitchellh/vault/vault_0.1.0_linux_amd64.zip && \
unzip vault_0.1.0_linux_amd64.zip && \
mv vault /usr/bin/ && \
rm vault_0.1.0_linux_amd64.zip
RUN apt-get purge -y wget unzip && apt-get clean
CMD ["/bin/bash"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment