debian-docker/Dockerfile

10 lines
370 B
Docker
Raw Normal View History

2016-12-19 14:02:29 +00:00
FROM debian
ADD https://github.com/Luzifer/repo-runner/releases/download/v0.9.0/inner-runner_linux_amd64 /usr/local/bin/inner-runner
RUN set -ex \
2016-12-19 14:11:23 +00:00
&& apt-get update && apt-get install -y make curl \
2016-12-19 14:02:29 +00:00
&& curl -sSL https://get.docker.com/builds/Linux/x86_64/docker-1.12.4.tgz | tar -xz -C /usr/local/bin --strip-components=1
ENTRYPOINT ["/usr/local/bin/inner-runner"]