Mercurial > hg > sonic-annotator
annotate deploy/linux/docker/Dockerfile_test_appimage.in @ 395:dec56c3e793b
Add a few more files to .hgignore
author | Chris Cannam |
---|---|
date | Tue, 09 Jun 2020 17:01:54 +0100 |
parents | a0ff34e9e86b |
children |
rev | line source |
---|---|
Chris@371 | 1 FROM centos:7 |
Chris@371 | 2 |
Chris@371 | 3 # Ensure that everything subsequent is re-run when a new revision is |
Chris@371 | 4 # being built (rather than being cached) - so as to avoid potential |
Chris@371 | 5 # mismatches between results of yum update and the package dependency |
Chris@371 | 6 # installation itself |
Chris@371 | 7 RUN echo [[REVISION]] |
Chris@371 | 8 |
Chris@371 | 9 RUN yum -y update |
Chris@371 | 10 RUN yum -y install wget |
Chris@371 | 11 ADD output/SonicAnnotator-[[REVISION]]-x86_64.AppImage runner.AppImage |
Chris@371 | 12 RUN chmod +x runner.AppImage |
Chris@371 | 13 RUN ./runner.AppImage --appimage-extract |
Chris@371 | 14 RUN ./squashfs-root/AppRun --version |