We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b69a047 + 77f077b commit e11ff3bCopy full SHA for e11ff3b
qa/Dockerfile
@@ -2,11 +2,21 @@ FROM ruby:2.4-stretch
2
LABEL maintainer "Grzegorz Bizon <[email protected]>"
3
ENV DEBIAN_FRONTEND noninteractive
4
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
+
10
##
11
# Update APT sources and install some dependencies
12
#
13
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
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
20
21
22
# Install Docker
0 commit comments