Skip to content

Commit 1ce487a

Browse files
committed
Added the debian security updates to apt sources for the docker image.
- Legacy-Id: 13771
1 parent 25e8334 commit 1ce487a

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

docker/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,11 @@ ENV DEBIAN_FRONTEND=noninteractive
3131
RUN apt-get update
3232
RUN apt-get install -qy apt-transport-https
3333

34-
# Use backports, updates, and security updates; all over https
35-
RUN echo "deb https://deb.debian.org/debian/ jessie main contrib non-free" > /etc/apt/sources.list
36-
RUN echo "deb https://deb.debian.org/debian/ jessie-backports main contrib non-free" >> /etc/apt/sources.list
37-
RUN echo "deb https://deb.debian.org/debian/ jessie-updates main contrib non-free" >> /etc/apt/sources.list
34+
# Use backports, updates, and security updates; over https if possible
35+
RUN echo "deb https://deb.debian.org/debian jessie main contrib non-free" > /etc/apt/sources.list
36+
RUN echo "deb https://deb.debian.org/debian jessie-backports main contrib non-free" >> /etc/apt/sources.list
37+
RUN echo "deb https://deb.debian.org/debian jessie-updates main contrib non-free" >> /etc/apt/sources.list
38+
RUN echo "deb http://security.debian.org/debian-security jessie/updates main contrib non-free" >> /etc/apt/sources.list
3839

3940
# Install needed packages
4041
#

0 commit comments

Comments
 (0)