Skip to content

Instantly share code, notes, and snippets.

View lox's full-sized avatar

Lachlan Donald lox

View GitHub Profile
@lox
lox / Dockerfile
Last active May 26, 2017 04:31
A basic repo that can be cloned for Buildkite Tests
FROM alpine:3.3
RUN apk --update --no-cache add curl && \
curl -Lfs https://github.com/betalo-sweden/await/releases/download/v0.4.0/await-linux-amd64 -o /bin/await && \
chmod +x /bin/await
ENTRYPOINT ["/bin/await"]