Mercurial > hg > easyhg
annotate deploy/linux/docker/Dockerfile_test_appimage.in @ 717:2a27275b8540
Avoid dropping out when yum tries to ask us a question
author | Chris Cannam |
---|---|
date | Wed, 12 Dec 2018 14:32:31 +0000 |
parents | 6fb20633da00 |
children |
rev | line source |
---|---|
Chris@701 | 1 FROM centos:7 |
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 yum update and the package dependency |
Chris@716 | 6 # installation itself |
Chris@716 | 7 RUN echo [[REVISION]] |
Chris@716 | 8 |
Chris@717 | 9 RUN yum -y update |
Chris@701 | 10 RUN yum -y groupinstall "X Window System" |
Chris@701 | 11 RUN yum -y install wget |
Chris@701 | 12 ADD output/EasyMercurial-[[REVISION]]-x86_64.AppImage EasyMercurial.AppImage |
Chris@701 | 13 RUN chmod +x EasyMercurial.AppImage |
Chris@701 | 14 RUN ./EasyMercurial.AppImage --appimage-extract |
Chris@701 | 15 RUN ./squashfs-root/AppRun --version |