Skip to content

Instantly share code, notes, and snippets.

@vancluever
Created January 2, 2017 02:25
Show Gist options
  • Select an option

  • Save vancluever/a25d735f79c97527b12303353d680a42 to your computer and use it in GitHub Desktop.

Select an option

Save vancluever/a25d735f79c97527b12303353d680a42 to your computer and use it in GitHub Desktop.
Quick Dockerfile for Gravitational Teleport (http://gravitational.com/teleport/)
FROM ubuntu:latest
RUN apt-get update && apt-get -y install curl make && \
cd /tmp && \
curl -LO https://github.com/gravitational/teleport/releases/download/v1.3.1/teleport-v1.3.1-linux-amd64-bin.tar.gz && \
tar zxvf teleport-v1.3.1-linux-amd64-bin.tar.gz && \
cd teleport && \
make install && \
rm -rf /tmp/* && \
rm -rf /var/lib/apt/lists
WORKDIR /root
CMD /bin/bash -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment