Created
January 2, 2017 02:25
-
-
Save vancluever/a25d735f79c97527b12303353d680a42 to your computer and use it in GitHub Desktop.
Quick Dockerfile for Gravitational Teleport (http://gravitational.com/teleport/)
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: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