- Create a gist if you haven't already.
- Clone your gist:
# make sure to replace `<hash>` with your gist's hash git clone https://gist.github.com/<hash>.git # with https git clone [email protected]:<hash>.git # or with ssh
This file contains 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 | |
MAINTAINER Owen Trueblood | |
# general dependencies | |
RUN apt-get install -y curl | |
# install target toolchain | |
RUN apt-get update --fix-missing | |
RUN apt-get install -y build-essential gcc-arm-linux-gnueabihf |