Add Docker binaries to instance image of GitLab QA
This commit is contained in:
parent
bd026b6a28
commit
65bb2575d8
1 changed files with 7 additions and 0 deletions
|
@ -8,6 +8,13 @@ ENV DEBIAN_FRONTEND noninteractive
|
|||
RUN sed -i "s/httpredir.debian.org/ftp.us.debian.org/" /etc/apt/sources.list
|
||||
RUN apt-get update && apt-get install -y wget git unzip xvfb
|
||||
|
||||
##
|
||||
# Install Docker
|
||||
#
|
||||
RUN wget -q https://download.docker.com/linux/static/stable/x86_64/docker-17.09.0-ce.tgz && \
|
||||
tar -zxf docker-17.09.0-ce.tgz && mv docker/docker /usr/local/bin/docker && \
|
||||
rm docker-17.09.0-ce.tgz
|
||||
|
||||
##
|
||||
# Install Google Chrome version with headless support
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue