Skip to content

Commit e11ff3b

Browse files
committed
Merge branch 'ashmckenzie/7516-update-qa-docker-image' into 'master'
Update git and install git-lfs QA docker image See merge request gitlab-org/gitlab-ce!22355
2 parents b69a047 + 77f077b commit e11ff3b

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

qa/Dockerfile

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,21 @@ FROM ruby:2.4-stretch
22
LABEL maintainer "Grzegorz Bizon <[email protected]>"
33
ENV DEBIAN_FRONTEND noninteractive
44

5+
##
6+
# Add support for stretch-backports
7+
#
8+
RUN echo "deb http://ftp.debian.org/debian stretch-backports main" >> /etc/apt/sources.list
9+
510
##
611
# Update APT sources and install some dependencies
712
#
813
RUN sed -i "s/httpredir.debian.org/ftp.us.debian.org/" /etc/apt/sources.list
9-
RUN apt-get update && apt-get install -y wget git unzip xvfb
14+
RUN apt-get update && apt-get install -y wget unzip xvfb
15+
16+
##
17+
# Install some packages from backports
18+
#
19+
RUN apt-get -y -t stretch-backports install git git-lfs
1020

1121
##
1222
# Install Docker

0 commit comments

Comments
 (0)