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/ubuntu-16.04-amd64/Dockerfile | |
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/ubuntu-16.04-amd64/Dockerfile')
-rw-r--r-- | misc/docker/ubuntu-16.04-amd64/Dockerfile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/misc/docker/ubuntu-16.04-amd64/Dockerfile b/misc/docker/ubuntu-16.04-amd64/Dockerfile new file mode 100644 index 00000000..50a4918c --- /dev/null +++ b/misc/docker/ubuntu-16.04-amd64/Dockerfile @@ -0,0 +1,12 @@ +FROM ubuntu:16.04 +ENV DEBIAN_FRONTEND noninteractive +RUN sed -i 's/deb.debian.org/ftp.cz.debian.org/' /etc/apt/sources.list +RUN apt-get -y update +RUN apt-get -y upgrade +RUN apt-get -y install \ + autoconf \ + build-essential \ + flex \ + bison \ + ncurses-dev \ + libreadline-dev |