This repository has been archived on 2023-02-05. You can view files and clone it, but cannot push or open issues or pull requests.
loki/runner/docker/Dockerfile

19 lines
591 B
Docker
Raw Normal View History

FROM registry.wojciechkozlowski.eu/wojtek/loki/runner-base
2018-01-25 22:21:17 +01:00
RUN apt install -y apt-transport-https \
ca-certificates \
curl \
gnupg2 \
software-properties-common
RUN curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID")/gpg | apt-key add -
RUN add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") \
$(lsb_release -cs) \
stable"
RUN apt update && apt install -y docker-ce docker-compose
ENV DOCKER_HOST "tcp://docker:2375"