diff options
author | Michal 'vorner' Vaner <michal.vaner@nic.cz> | 2017-08-17 15:02:35 +0200 |
---|---|---|
committer | Michal 'vorner' Vaner <michal.vaner@nic.cz> | 2017-09-04 11:25:51 +0200 |
commit | 5c4dfe0c30e5516fac73e6ed8455af2245ebc62a (patch) | |
tree | e6d9c4bc007a61144edf737989333b679b7f3729 /misc/docker/centos-6-amd64 | |
parent | 080d9e4ce25f8f14e61ba0a81d5385bf8de3e48f (diff) |
Gitlab CI support
Add configuration and docker definitions for tests and builds in Gitlab
CI platform.
Some of them currently fail, which is a known problem.
Diffstat (limited to 'misc/docker/centos-6-amd64')
-rw-r--r-- | misc/docker/centos-6-amd64/Dockerfile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/misc/docker/centos-6-amd64/Dockerfile b/misc/docker/centos-6-amd64/Dockerfile new file mode 100644 index 00000000..d92f64f9 --- /dev/null +++ b/misc/docker/centos-6-amd64/Dockerfile @@ -0,0 +1,11 @@ +FROM centos:6 +RUN yum -y upgrade +RUN yum -y install \ + autoconf \ + flex \ + bison \ + pkgconfig \ + 'readline-devel' \ + 'pkgconfig(ncurses)' \ + gcc \ + make |