mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-30 01:53:17 +03:00
9bccfb89cc
* Added Ubuntu Dockers for 16, 18, and 19 * Added Cirrus CI build task for gcloud instance with SSDs * Added macOS instance build with brew Qt install * Fixed Qt headers for 5.12.2 used in Ubuntu 19.04 * Consolidated version info into CMake file
24 lines
520 B
Docker
24 lines
520 B
Docker
#
|
|
# Ubuntu Dockerfile
|
|
#
|
|
# https://github.com/dockerfile/ubuntu
|
|
#
|
|
|
|
# Pull base image.
|
|
FROM ubuntu:18.04
|
|
|
|
# Install.
|
|
RUN \
|
|
sed -i 's/# \(.*multiverse$\)/\1/g' /etc/apt/sources.list && \
|
|
apt-get update && \
|
|
apt-get install -y git cmake qtbase5-dev build-essential libx11-dev libxtst-dev libgl1-mesa-dev libssl-dev libavahi-compat-libdnssd-dev && \
|
|
apt-get install -y debhelper devscripts
|
|
|
|
# Set environment variables.
|
|
ENV HOME /root
|
|
|
|
# Define working directory.
|
|
WORKDIR /root
|
|
|
|
# Define default command.
|
|
CMD ["bash"] |