Skip to content

Instantly share code, notes, and snippets.

View lestephane's full-sized avatar
:bowtie:
open for business

Le Stephane lestephane

:bowtie:
open for business
View GitHub Profile
@lestephane
lestephane / Dockerfile
Created September 10, 2017 19:35
Dockerized terraform bundler
FROM golang:alpine
RUN apk update && apk upgrade && \
apk add --no-cache git zip
ARG TERRAFORM_VERSION
RUN git clone --single-branch --branch v${TERRAFORM_VERSION} https://github.com/hashicorp/terraform.git /go/src/github.com/hashicorp/terraform
RUN cd $GOPATH/src/github.com/hashicorp/terraform && echo $GOPATH && go install ./tools/terraform-bundle
@lestephane
lestephane / RunFirefoxInVM.sh
Last active September 4, 2018 19:15
Bionic Quad 9 Firefox Runner
vagrant up && vagrant ssh -- -X firefox