* add fedora docker image to travis compilation fixes #1746 * add dockerfile * would you like to please install for me? [y/n] * remove bc dependency * save cache separately for different docker builds * add development packages to fedora dockerfile * add package names * use env values to make these all look the same * set docker image name correctly * add missing dependency * minor oversight, add %% to remove all braces in check schema
21 lines
523 B
Docker
21 lines
523 B
Docker
FROM ubuntu:bionic
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
clang-format \
|
|
file \
|
|
g++ \
|
|
git \
|
|
ccache \
|
|
cmake \
|
|
libprotobuf-dev \
|
|
libqt5multimedia5-plugins \
|
|
libqt5svg5-dev \
|
|
libqt5sql5-mysql \
|
|
libqt5websockets5-dev \
|
|
protobuf-compiler \
|
|
qt5-default \
|
|
qttools5-dev \
|
|
qttools5-dev-tools \
|
|
qtmultimedia5-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|