annotate deploy/linux/docker/Dockerfile_test_deb.in @ 716:6fb20633da00

Defeat cacheing; switch to 16.04 for deb build (no point in trying to support 14.04 as it doesn't have the python-pyqt5 package that is one of our dependencies)
author Chris Cannam
date Wed, 12 Dec 2018 14:10:55 +0000
parents 540bda2e71b1
children
rev   line source
Chris@706 1 FROM ubuntu:18.04
Chris@716 2
Chris@716 3 # Ensure that everything subsequent is re-run when a new revision is
Chris@716 4 # being built (rather than being cached) - so as to avoid potential
Chris@716 5 # mismatches between results of apt-get update and the package
Chris@716 6 # dependency installation itself
Chris@716 7 RUN echo [[REVISION]]
Chris@716 8
Chris@706 9 RUN apt-get update
Chris@714 10 RUN apt-get -y dist-upgrade
Chris@712 11 ADD output/easymercurial_[[RELEASE]]_amd64.deb easymercurial_[[RELEASE]]_amd64.deb
Chris@712 12 RUN apt install -y ./easymercurial_[[RELEASE]]_amd64.deb
Chris@706 13 RUN /usr/bin/EasyMercurial --version
Chris@706 14