annotate deploy/linux/docker/Dockerfile_test.in @ 129:afd72eb2b0aa
tip
Added tag v1.0-windows-32bit for changeset 7d5387c63447
author |
Chris Cannam |
date |
Fri, 12 Jun 2020 17:20:52 +0100 |
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
|