annotate deploy/linux/docker/Dockerfile_test.in @ 115:dfa9e44cdcdb
Specify C99 explicitly for C files (not the default in older compilers), + fix for compiler warning in svcore
author |
Chris Cannam |
date |
Fri, 06 Mar 2020 12:53:57 +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
|