Mercurial > hg > tony
annotate deploy/linux/docker/Dockerfile_test_appimage.in @ 684:1f1824a93c7d v2.1.1
Merge
author | Chris Cannam |
---|---|
date | Tue, 10 Dec 2019 09:42:21 +0000 |
parents | 40cc49380398 |
children |
rev | line source |
---|---|
Chris@612 | 1 FROM centos:7 |
Chris@612 | 2 |
Chris@612 | 3 # Ensure that everything subsequent is re-run when a new revision is |
Chris@612 | 4 # being built (rather than being cached) - so as to avoid potential |
Chris@612 | 5 # mismatches between results of yum update and the package dependency |
Chris@612 | 6 # installation itself |
Chris@612 | 7 RUN echo [[REVISION]] |
Chris@612 | 8 |
Chris@612 | 9 RUN yum -y update |
Chris@612 | 10 RUN yum -y groupinstall "X Window System" |
Chris@612 | 11 RUN yum -y install wget |
Chris@612 | 12 ADD output/Tony-[[REVISION]]-x86_64.AppImage Tony.AppImage |
Chris@612 | 13 RUN chmod +x Tony.AppImage |
Chris@612 | 14 RUN ./Tony.AppImage --appimage-extract |
Chris@612 | 15 RUN ./squashfs-root/AppRun --version |