[Pdbg] [PATCH 1/2] build.sh: Update docker container to Ubuntu 18.04

Joel Stanley joel at jms.id.au
Wed May 2 02:36:10 AEST 2018


Travis was failing to hit Ubuntu 16.04 repos. The problem went away when
I moved to the newer release. While it probably didn't fix anything,
there's no reason to be on the old release now that the new LTS is out,
so move on up.

Signed-off-by: Joel Stanley <joel at jms.id.au>
---
 .build.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.build.sh b/.build.sh
index 11aa3ae7f080..f40bb3b823c2 100755
--- a/.build.sh
+++ b/.build.sh
@@ -5,7 +5,7 @@ set -e
 CONTAINER=pdbg-build
 
 Dockerfile=$(cat << EOF
-FROM ubuntu:17.04
+FROM ubuntu:18.04
 RUN apt-get update && apt-get install --no-install-recommends -yy \
 	make \
 	gcc-arm-linux-gnueabi \
@@ -22,7 +22,7 @@ RUN /bin/bash
 EOF
 )
 
-docker pull ubuntu:17.04
+docker pull ubuntu:18.04
 docker build -t ${CONTAINER} - <<< "${Dockerfile}"
 
 RUN="docker run --rm=true --user=${USER} -w ${PWD} -v ${HOME}:${HOME} -t ${CONTAINER}"
-- 
2.17.0



More information about the Pdbg mailing list