Mercurial > hg > tony
annotate deploy/linux/docker/Dockerfile_test_appimage.in @ 698:ee97c742d184 tip
Default branch is now named default on git as well as hg, in case we ever want to switch to mirroring in the other direction
author | Chris Cannam |
---|---|
date | Thu, 27 Aug 2020 15:58:43 +0100 |
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 |