Skip to content
Snippets Groups Projects
Unverified Commit 356cf1fb authored by Rhys Arkins's avatar Rhys Arkins Committed by GitHub
Browse files

feat: docker image run side containers (#3222)

Adds Docker client to official renovate image so that it can run side containers.
parent bb15977e
No related branches found
No related tags found
No related merge requests found
......@@ -100,6 +100,18 @@ RUN groupadd --gid 1000 ubuntu \
RUN chmod -R a+rw /usr
# Docker client and group
RUN groupadd -g 999 docker
RUN usermod -aG docker ubuntu
ENV DOCKER_VERSION=18.09.2
RUN curl -fsSLO https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz \
&& tar xzvf docker-${DOCKER_VERSION}.tgz --strip 1 \
-C /usr/local/bin docker/docker \
&& rm docker-${DOCKER_VERSION}.tgz
USER ubuntu
# Pipenv
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment