annotate deploy/linux/docker/Dockerfile_test_deb.in @ 2152:60d78294ea3a

Oookay... Travis's Trusty image is now too old for the bundled hg to be able to connect to Bitbucket after the latter switched off TLS 1.0 and 1.1 support this month. So we must either use a newer image, or find another workaround. Let's try the newer image first, since we'd probably be using that already if it had existed when we set this up
author Chris Cannam
date Thu, 06 Dec 2018 09:36:08 +0000
parents 295b6a146f1c
children 3f3ad6701482
rev   line source
Chris@2116 1 FROM ubuntu:18.04
Chris@2116 2 RUN apt-get update
Chris@2119 3 ADD output/sonic-visualiser_[[RELEASE]]_amd64.deb sonic-visualiser_[[RELEASE]]_amd64.deb
Chris@2120 4 RUN apt install -y ./sonic-visualiser_[[RELEASE]]_amd64.deb
Chris@2116 5 RUN /usr/bin/sonic-visualiser --version
Chris@2116 6