You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
559 B
16 lines
559 B
# This container amins to offer a testing environment similar to the one we are
|
|
# creating in travis-ci so we can easily reproduce issues detected on our CI
|
|
# locally
|
|
#
|
|
# To use it, simply execute the container like this:
|
|
# docker run --rm -ti --privileged -v /path/to/linuxdeployqt:/linuxdeployqt bash
|
|
# and then execute tests/tests-ci.sh
|
|
|
|
FROM ubuntu:trusty
|
|
|
|
RUN apt-get update && apt-get -y install software-properties-common wget build-essential \
|
|
autoconf git fuse libgl1-mesa-dev psmisc
|
|
|
|
COPY tests/tests-environment.sh /
|
|
|
|
RUN /tests-environment.sh
|
|
|