From 7f6a56c6fb557d5fb189f531c98ba50d0c234104 Mon Sep 17 00:00:00 2001 From: Jon Whittlestone Date: Sun, 7 Apr 2019 14:15:07 +0100 Subject: [PATCH] Python 2 base image modification to prevent docker build from failing With the base image set at `python:2.7`, docker build failed when installing python dependencies --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1e62e1d..ace3979 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:2.7 +FROM python:2.7-jessie # Install xmlsec1 RUN echo 'deb http://mirror.isoc.org.il/pub/ubuntu/ trusty main universe' >> /etc/apt/sources.list && \