Mercurial > hg > sonic-annotator
comparison deploy/linux/docker/Dockerfile_test_appimage.in @ 371:a0ff34e9e86b
First cut at Linux AppImage
author | Chris Cannam |
---|---|
date | Fri, 05 Jun 2020 11:08:37 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
370:3e0133aa2354 | 371:a0ff34e9e86b |
---|---|
1 FROM centos:7 | |
2 | |
3 # Ensure that everything subsequent is re-run when a new revision is | |
4 # being built (rather than being cached) - so as to avoid potential | |
5 # mismatches between results of yum update and the package dependency | |
6 # installation itself | |
7 RUN echo [[REVISION]] | |
8 | |
9 RUN yum -y update | |
10 RUN yum -y install wget | |
11 ADD output/SonicAnnotator-[[REVISION]]-x86_64.AppImage runner.AppImage | |
12 RUN chmod +x runner.AppImage | |
13 RUN ./runner.AppImage --appimage-extract | |
14 RUN ./squashfs-root/AppRun --version |