anthem/.ci/Dockerfile-ubuntu-18.04
Patrick Lühne c7d1026a31
Switch Travis to Docker
As Travis only provides outdated packages (compilers in particular),
this changes the Travis configuration to use Docker images to build and
test the code. This also has the benefit that multiple distributions can
be tested and not just Ubuntu.

For the time being, Arch Linux and Ubuntu 18.04 are added as supported
platforms.
2018-03-24 15:51:20 +01:00

7 lines
118 B
Plaintext

FROM ubuntu:18.04
RUN apt-get update
RUN apt-get install -y libboost-all-dev cmake git ninja-build re2c
VOLUME /app