Mercurial > hg > vamp-plugin-pack
annotate deploy/linux/docker/Dockerfile_test.in @ 92:e77b52b0ceeb
Add desktop file
author | Chris Cannam |
---|---|
date | Thu, 27 Feb 2020 13:12:42 +0000 |
parents | ddfd13c43519 |
children |
rev | line source |
---|---|
Chris@91 | 1 FROM centos:7 |
Chris@91 | 2 |
Chris@91 | 3 # Ensure that everything subsequent is re-run when a new revision is |
Chris@91 | 4 # being built (rather than being cached) - so as to avoid potential |
Chris@91 | 5 # mismatches between results of yum update and the package dependency |
Chris@91 | 6 # installation itself |
Chris@91 | 7 RUN echo [[REVISION]] |
Chris@91 | 8 |
Chris@91 | 9 RUN yum -y update |
Chris@91 | 10 RUN yum -y groupinstall "X Window System" |
Chris@91 | 11 RUN yum -y install wget |
Chris@91 | 12 ADD output/VampPluginPackInstaller-[[REVISION]]-x86_64.AppImage Pack.AppImage |
Chris@91 | 13 RUN chmod +x Pack.AppImage |
Chris@91 | 14 RUN ./Pack.AppImage --appimage-extract |
Chris@91 | 15 RUN ./squashfs-root/AppRun --version |